.page-khuynmi {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-khuynmi__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  text-align: center;
}

.page-khuynmi__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.page-khuynmi__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-khuynmi__hero-content {
  max-width: 800px;
}

.page-khuynmi__main-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
  max-width: 60ch; /* Constraint for H1 length */
  margin-left: auto;
  margin-right: auto;
}

.page-khuynmi__hero-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #1F2D3D; /* Text Main */
  max-width: 160ch; /* Constraint for description length */
  margin-left: auto;
  margin-right: auto;
}

.page-khuynmi__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-khuynmi__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-khuynmi__promotions-grid {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 20px;
  text-align: center;
}

.page-khuynmi__section-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
  padding-top: 30px; /* H2 top spacing */
}

.page-khuynmi__section-description {
  font-size: 1em;
  margin-bottom: 40px;
  color: #1F2D3D; /* Text Main */
}

.page-khuynmi__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-khuynmi__promotion-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
  border: 1px solid #D6E2FF; /* Border */
}

.page-khuynmi__promotion-card:hover {
  transform: translateY(-5px);
}

.page-khuynmi__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-khuynmi__card-content {
  padding: 25px;
  text-align: left;
}

.page-khuynmi__card-title {
  font-weight: 600;
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-khuynmi__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-khuynmi__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-khuynmi__faq-section {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  padding: 20px;
}

.page-khuynmi__faq-item {
  background-color: #FFFFFF; /* Card BG */\  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-khuynmi__faq-question {
  font-weight: 600;
  font-size: 1.15em;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-khuynmi__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-khuynmi__hero-section {
    padding: 15px;
    margin-bottom: 30px;
  }

  .page-khuynmi__main-title {
    font-size: 2em; /* Use clamp if specific range is needed, otherwise slightly smaller */
    max-width: 100%;
  }

  .page-khuynmi__hero-description {
    font-size: 1em;
    max-width: 100%;
  }

  .page-khuynmi__promotions-grid,
  .page-khuynmi__faq-section {
    padding: 15px;
    margin-bottom: 40px;
  }

  .page-khuynmi__grid-container {
    grid-template-columns: 1fr;
  }

  .page-khuynmi__card-image {
    max-width: 100%;
    height: auto; /* Allow height to adjust for responsiveness */
    min-height: 200px; /* Ensure minimum size */
  }

  /* Ensure all images within .page-khuynmi are responsive and don't overflow */
  .page-khuynmi img {
    max-width: 100%;
    height: auto;
  }

  .page-khuynmi__card-title {
    font-size: 1.2em;
  }

  .page-khuynmi__faq-question {
    font-size: 1.05em;
  }
}

@media (max-width: 480px) {
  .page-khuynmi__main-title {
    font-size: 1.8em;
  }
  .page-khuynmi__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}