.page-khuynmi {
  padding-top: 10px; /* Small top padding to ensure content starts below header */
  background-color: var(--background-color, #F4F7FB);
  color: var(--text-main-color, #1F2D3D);
}

.page-khuynmi__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-khuynmi__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: var(--card-bg-color, #FFFFFF);
  border-radius: 8px;
  margin: 20px auto;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-khuynmi__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

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

.page-khuynmi__hero-content {
  padding: 30px 20px;
  max-width: 900px;
}

.page-khuynmi__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Ensures H1 is responsive but not too large */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--custom-color-1776249996415, #000000);
}

.page-khuynmi__description {
  font-size: 1.15em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main-color, #1F2D3D);
}

.page-khuynmi__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px var(--glow-color, #A5C4FF);
  font-size: 1.1em;
}

.page-khuynmi__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--glow-color, #A5C4FF);
}

.page-khuynmi__promotions-list {
  padding: 60px 0;
}

.page-khuynmi__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--custom-color-1776249996415, #000000);
}

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

.page-khuynmi__promotion-card {
  background-color: var(--card-bg-color, #FFFFFF);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #D6E2FF);
}

.page-khuynmi__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

.page-khuynmi__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main-color, #1F2D3D);
}

.page-khuynmi__card-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-main-color, #1F2D3D);
}

.page-khuynmi__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 0.95em;
}

.page-khuynmi__card-button:hover {
  opacity: 0.9;
}

.page-khuynmi__about-promotions {
  padding: 60px 0 80px;
  background-color: var(--card-bg-color, #FFFFFF);
  margin-top: 40px;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-khuynmi__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
  color: var(--text-main-color, #1F2D3D);
}

.page-khuynmi__cta-button--bottom {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .page-khuynmi__hero-section {
    margin: 10px auto;
    padding-bottom: 20px;
  }

  .page-khuynmi__hero-content {
    padding: 20px 15px;
  }

  .page-khuynmi__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-khuynmi__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-khuynmi__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-khuynmi__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-khuynmi__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-khuynmi__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }

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

  .page-khuynmi__card-description {
    font-size: 0.95em;
  }

  .page-khuynmi__about-promotions {
    padding: 40px 0 60px;
    margin: 20px auto;
  }

  .page-khuynmi__text-content {
    font-size: 1em;
  }

  .page-khuynmi__container {
    padding: 15px;
  }

  .page-khuynmi img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-khuynmi__section-title {
    font-size: 1.8em;
  }

  .page-khuynmi__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}