.page-khuynmi {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

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

/* HERO Section */
.page-khuynmi__hero-section {
  position: relative;
  padding-top: 10px; /* Assuming shared.css handles body padding-top */
  padding-bottom: 40px;
  text-align: center;
  background-color: #C91F17; /* Main color */
}

.page-khuynmi__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
}

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

.page-khuynmi__hero-content {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-khuynmi__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-khuynmi__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1; /* Text Main */
}

.page-khuynmi__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-khuynmi__btn-primary,
.page-khuynmi__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-khuynmi__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
}

.page-khuynmi__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

.page-khuynmi__btn-secondary {
  background-color: #C91F17; /* Main color */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border */
}

.page-khuynmi__btn-secondary:hover {
  background-color: #E53935; /* Accent color */
  border-color: #FFCC66; /* Glow */
  transform: translateY(-2px);
}

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

/* General Section Styles */
.page-khuynmi__introduction-section,
.page-khuynmi__promo-types-section,
.page-khuynmi__how-to-claim-section,
.page-khuynmi__why-choose-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
}

.page-khuynmi__terms-section,
.page-khuynmi__faq-section {
  padding: 60px 0;
  background-color: #D32F2F; /* Card BG - Darker background for contrast */
  color: #FFF5E1; /* Text Main */
}

.page-khuynmi__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #F4D34D; /* Gold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-khuynmi__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-khuynmi__highlight {
  color: #FFD86A; /* Lighter gold for highlight */
  font-weight: bold;
}

/* Promo Grid */
.page-khuynmi__promo-grid,
.page-khuynmi__steps-grid,
.page-khuynmi__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-khuynmi__promo-card,
.page-khuynmi__step-card,
.page-khuynmi__advantage-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #7A0E0E; /* Deep Red border */
  color: #FFF5E1;
}

.page-khuynmi__promo-card:hover,
.page-khuynmi__step-card:hover,
.page-khuynmi__advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-khuynmi__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #F2B544; /* Border */
}

.page-khuynmi__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-khuynmi__card-description {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Steps Card */
.page-khuynmi__step-card {
  background-color: #C91F17; /* Main color for light cards */
  color: #FFF5E1;
}

.page-khuynmi__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-khuynmi__step-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #FFCC66; /* Glow */
}

.page-khuynmi__step-description {
  font-size: 1em;
  line-height: 1.5;
}

/* Terms & Conditions List */
.page-khuynmi__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-khuynmi__term-item {
  background-color: #B71C1C; /* Background */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #F2B544; /* Border */
}

.page-khuynmi__term-title {
  font-size: 1.4em;
  color: #FFCC66; /* Glow */
  margin-bottom: 10px;
}

.page-khuynmi__term-description {
  font-size: 1em;
  line-height: 1.5;
}

/* FAQ Section */
.page-khuynmi__faq-list {
  margin-top: 30px;
}

.page-khuynmi__faq-item {
  background-color: #C91F17; /* Main color */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #7A0E0E; /* Deep Red */
  overflow: hidden;
}

.page-khuynmi__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  cursor: pointer;
  list-style: none;
  background-color: #E53935; /* Accent color for summary */
  border-bottom: 1px solid #7A0E0E; /* Deep Red */
}

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

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

.page-khuynmi__faq-qtext {
  flex-grow: 1;
}

.page-khuynmi__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #FFF5E1; /* Text Main */
}

.page-khuynmi__faq-answer {
  padding: 20px;
  font-size: 1em;
  line-height: 1.5;
  color: #FFF5E1; /* Text Main */
  background-color: #C91F17; /* Main color for answer */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-khuynmi__main-title {
    font-size: 2.8em;
  }
  .page-khuynmi__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  /* HERO Section Mobile */
  .page-khuynmi__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-khuynmi__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em) !important; /* clamp for H1 */
    margin-bottom: 10px;
  }

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

  .page-khuynmi__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* General Image & Container Mobile */
  .page-khuynmi img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-khuynmi__container,
  .page-khuynmi__section,
  .page-khuynmi__card,
  .page-khuynmi__promo-card,
  .page-khuynmi__step-card,
  .page-khuynmi__advantage-card,
  .page-khuynmi__terms-section,
  .page-khuynmi__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Product Display / Promo Grid Mobile */
  .page-khuynmi__promo-grid,
  .page-khuynmi__steps-grid,
  .page-khuynmi__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-khuynmi__promo-image {
    height: 180px;
  }

  /* Buttons Mobile */
  .page-khuynmi__btn-primary,
  .page-khuynmi__btn-secondary,
  .page-khuynmi a[class*="button"],
  .page-khuynmi a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-khuynmi__cta-buttons,
  .page-khuynmi__button-group,
  .page-khuynmi__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Other Content Modules Mobile */
  .page-khuynmi__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-khuynmi__text-block,
  .page-khuynmi__card-description,
  .page-khuynmi__step-description,
  .page-khuynmi__term-description,
  .page-khuynmi__faq-answer p {
    font-size: 0.95em;
  }

  .page-khuynmi__promo-card,
  .page-khuynmi__step-card,
  .page-khuynmi__advantage-card,
  .page-khuynmi__term-item,
  .page-khuynmi__faq-item {
    padding: 15px;
  }

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

  .page-khuynmi__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
}