.page-khuynmi {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-khuynmi__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-khuynmi__section-text {
  font-size: 18px;
  line-height: 1.8;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-khuynmi__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
}

.page-khuynmi__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-khuynmi__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-khuynmi__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-khuynmi__hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-khuynmi__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-khuynmi__cta-button--secondary {
  background: #11271B; /* Card BG */
  border: 2px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-khuynmi__cta-button--secondary:hover {
  background: #0A4B2C; /* Deep Green */
  border-color: #57E38D; /* Glow */
}

/* Intro Section */
.page-khuynmi__intro-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

/* Promotion Categories Section */
.page-khuynmi__categories-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A;
}

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

.page-khuynmi__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
}

.page-khuynmi__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-khuynmi__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-khuynmi__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-khuynmi__promo-card-title {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-khuynmi__promo-card-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-khuynmi__promo-card .page-khuynmi__cta-button {
  margin-top: auto;
  width: fit-content;
  align-self: flex-start;
  padding: 12px 25px;
  font-size: 18px;
}

/* Claim Guide Section */
.page-khuynmi__claim-guide-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A;
}

.page-khuynmi__guide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-khuynmi__step-list {
  flex: 1;
  min-width: 300px;
}

.page-khuynmi__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-khuynmi__step-number {
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 5px;
}

.page-khuynmi__step-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-khuynmi__guide-image-wrapper {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.page-khuynmi__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E;
}

/* Featured Promos Section */
.page-khuynmi__featured-promos-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A;
}

.page-khuynmi__promo-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-khuynmi__promo-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-khuynmi__promo-item-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.page-khuynmi__promo-item-content {
  padding: 30px;
}

.page-khuynmi__promo-item-title {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
}

.page-khuynmi__promo-item-description {
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Terms & Conditions Section */
.page-khuynmi__terms-conditions-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A;
}

.page-khuynmi__note-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.page-khuynmi__note-item {
  background-color: #0A4B2C; /* Deep Green */
  border-left: 5px solid #11A84E; /* Main color */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__note-item-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-khuynmi__note-item-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-khuynmi__terms-conditions-section .page-khuynmi__cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* FAQ Section */
.page-khuynmi__faq-section {
  padding: 60px 0;
}

.page-khuynmi__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-khuynmi__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  background-color: #11271B;
  list-style: none;
  position: relative;
}

.page-khuynmi__faq-question::-webkit-details-marker {
  display: none;
}

.page-khuynmi__faq-toggle {
  font-size: 28px;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-khuynmi__faq-item[open] .page-khuynmi__faq-toggle {
  transform: rotate(45deg);
}

.page-khuynmi__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

/* Final CTA Section */
.page-khuynmi__final-cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  margin-top: 40px;
}

.page-khuynmi__final-cta-section .page-khuynmi__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-khuynmi__final-cta-section .page-khuynmi__section-text {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-khuynmi__hero-title {
    font-size: clamp(32px, 5vw, 50px);
  }
  .page-khuynmi__hero-description {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-khuynmi__guide-content {
    flex-direction: column;
  }
  .page-khuynmi__guide-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-khuynmi__step-list {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-khuynmi {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-khuynmi__container {
    padding: 0 15px;
  }
  .page-khuynmi__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 25px;
  }
  .page-khuynmi__section-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-khuynmi__hero-section {
    min-height: 450px;
    padding-bottom: 30px;
  }
  .page-khuynmi__hero-title {
    font-size: clamp(28px, 7vw, 48px);
    margin-bottom: 15px;
  }
  .page-khuynmi__hero-description {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 30px;
  }
  .page-khuynmi__cta-button {
    padding: 12px 20px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-khuynmi__promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-khuynmi__promo-card-image {
    height: 200px;
  }
  .page-khuynmi__promo-card-title {
    font-size: 20px;
  }
  .page-khuynmi__promo-card-description {
    font-size: 15px;
  }
  .page-khuynmi__promo-card .page-khuynmi__cta-button {
    width: 100%;
    align-self: stretch;
  }
  .page-khuynmi__step-item {
    flex-direction: column;
    text-align: center;
  }
  .page-khuynmi__step-number {
    margin: 0 auto 15px auto;
  }
  .page-khuynmi__step-title {
    font-size: 20px;
  }
  .page-khuynmi__step-description {
    font-size: 15px;
  }
  .page-khuynmi__guide-image {
    max-height: 300px;
  }
  .page-khuynmi__promo-item-title {
    font-size: 24px;
  }
  .page-khuynmi__promo-item-description {
    font-size: 16px;
  }
  .page-khuynmi__note-item-title {
    font-size: 20px;
  }
  .page-khuynmi__note-item-description {
    font-size: 15px;
  }
  .page-khuynmi__faq-question {
    font-size: 18px;
    padding: 18px 20px;
  }
  .page-khuynmi__faq-answer {
    font-size: 15px;
    padding: 0 20px 18px;
  }
  /* Ensure all images are responsive */
  .page-khuynmi img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-khuynmi__section, .page-khuynmi__card, .page-khuynmi__container, .page-khuynmi__hero-content, .page-khuynmi__promo-item-content, .page-khuynmi__faq-list, .page-khuynmi__note-list, .page-khuynmi__step-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-khuynmi__hero-section,
  .page-khuynmi__intro-section,
  .page-khuynmi__categories-section,
  .page-khuynmi__claim-guide-section,
  .page-khuynmi__featured-promos-section,
  .page-khuynmi__terms-conditions-section,
  .page-khuynmi__faq-section,
  .page-khuynmi__final-cta-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-khuynmi__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-khuynmi__hero-title {
    font-size: clamp(24px, 8vw, 40px);
  }
  .page-khuynmi__hero-description {
    font-size: clamp(14px, 3vw, 16px);
  }
  .page-khuynmi__section-title {
    font-size: clamp(20px, 7vw, 30px);
  }
  .page-khuynmi__cta-button {
    font-size: 16px;
    padding: 10px 15px;
  }
  .page-khuynmi__promo-card-title {
    font-size: 18px;
  }
  .page-khuynmi__promo-item-title {
    font-size: 20px;
  }
  .page-khuynmi__step-title {
    font-size: 18px;
  }
  .page-khuynmi__faq-question {
    font-size: 16px;
  }
}