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

.page-khuynmi__section {
  padding: 60px 0;
  text-align: center;
  background-color: #08160F; /* Background */
}

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

.page-khuynmi__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #F2FFF6;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
}

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

.page-khuynmi__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  max-width: 90%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
}

.page-khuynmi__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-khuynmi__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-khuynmi__hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-khuynmi__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-khuynmi__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

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

.page-khuynmi__btn--secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-khuynmi__btn--secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-khuynmi__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-khuynmi__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-khuynmi__text-block a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-khuynmi__text-block a:hover {
  color: #13994A;
}

.page-khuynmi__promotion-types .page-khuynmi__section-title {
  margin-bottom: 60px;
}

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

.page-khuynmi__promotion-card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-khuynmi__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-khuynmi__card-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-khuynmi__card-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-khuynmi__btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  align-self: flex-start;
}

.page-khuynmi__how-to-claim .page-khuynmi__section-title {
  margin-bottom: 40px;
}

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

.page-khuynmi__step-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__step-title {
  font-size: 1.5rem;
  color: #2AD16F;
  margin-bottom: 10px;
}

.page-khuynmi__step-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-khuynmi__step-description a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-khuynmi__step-description a:hover {
  color: #F2FFF6;
}

.page-khuynmi__cta-center {
  margin-top: 40px;
}

.page-khuynmi__terms-conditions .page-khuynmi__section-title {
  margin-bottom: 40px;
}

.page-khuynmi__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  color: #F2FFF6;
}

.page-khuynmi__list-item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05rem;
}

.page-khuynmi__list-item::before {
  content: '✔️';
  color: #2AD16F;
  position: absolute;
  left: 0;
  top: 0;
}

.page-khuynmi__list-item strong {
  color: #F2C14E; /* Gold */
}

.page-khuynmi__faq-section {
  background-color: #0A4B2C; /* Deep Green */
  padding-top: 80px;
  padding-bottom: 80px;
}

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

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

.page-khuynmi__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-khuynmi__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-khuynmi__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-khuynmi__faq-item[open] .page-khuynmi__faq-question {
  background-color: #1E3A2A;
}

.page-khuynmi__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Gold */
}

.page-khuynmi__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-khuynmi__faq-item[open] .page-khuynmi__faq-toggle {
  content: '−';
}

.page-khuynmi__faq-answer {
  padding: 15px 25px 25px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-khuynmi__faq-answer p {
  margin-bottom: 0;
}

.page-khuynmi__faq-answer a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-khuynmi__faq-answer a:hover {
  color: #13994A;
}

.page-khuynmi__cta-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-khuynmi__cta-section .page-khuynmi__section-title {
  color: #F2C14E; /* Gold */
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-khuynmi__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-khuynmi__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-khuynmi__hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-khuynmi__section {
    padding: 40px 0;
  }
  .page-khuynmi__container {
    padding: 0 15px;
  }
  .page-khuynmi__hero-content {
    padding: 15px 20px;
  }
  .page-khuynmi__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-khuynmi__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-khuynmi__hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  .page-khuynmi__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-khuynmi__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-khuynmi__text-block {
    font-size: 1rem;
  }
  .page-khuynmi__card-title {
    font-size: 1.5rem;
  }
  .page-khuynmi__card-description {
    font-size: 0.95rem;
  }
  .page-khuynmi__btn--small {
    width: auto !important;
    max-width: fit-content !important;
    align-self: center;
  }
  .page-khuynmi__steps-list {
    margin-top: 20px;
  }
  .page-khuynmi__step-item {
    padding: 20px;
  }
  .page-khuynmi__step-title {
    font-size: 1.3rem;
  }
  .page-khuynmi__step-description {
    font-size: 0.95rem;
  }
  .page-khuynmi__list-item {
    font-size: 0.95rem;
  }
  .page-khuynmi__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }
  .page-khuynmi__faq-answer {
    font-size: 0.95rem;
    padding: 10px 20px 20px 20px;
  }
  .page-khuynmi__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-khuynmi img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-khuynmi__section,
  .page-khuynmi__card,
  .page-khuynmi__container,
  .page-khuynmi__promotion-card,
  .page-khuynmi__cta-buttons,
  .page-khuynmi__hero-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-khuynmi__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-khuynmi__section-title {
    font-size: 1.8rem;
  }
  .page-khuynmi__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-khuynmi__card-title {
    font-size: 1.3rem;
  }
  .page-khuynmi__step-title {
    font-size: 1.2rem;
  }
  .page-khuynmi__faq-qtext {
    font-size: 1rem;
  }
  .page-khuynmi__faq-question {
    padding: 12px 15px;
  }
}

/* Contrast Fixes - Ensure readability */
.page-khuynmi__dark-bg {
  color: #F2FFF6; /* Text Main */
  background: #08160F; /* Background */
}

.page-khuynmi__light-bg {
  color: #333333; /* Default dark text */
  background: #ffffff;
}

.page-khuynmi__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-khuynmi__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}