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

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

.page-khuynmi__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-khuynmi__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-khuynmi__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.page-khuynmi__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-khuynmi__btn-primary,
.page-khuynmi__btn-secondary,
.page-khuynmi__btn-card,
.page-khuynmi__floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  min-width: 180px;
}

.page-khuynmi__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

.page-khuynmi__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #0A4B2C; /* Deep Green */
}

.page-khuynmi__overview-section,
.page-khuynmi__categories-section,
.page-khuynmi__claim-guide-section,
.page-khuynmi__terms-section,
.page-khuynmi__faq-section,
.page-khuynmi__final-cta-section {
  padding: 80px 20px;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-khuynmi__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-khuynmi__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-khuynmi__text-block a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-khuynmi__text-block a:hover {
  text-decoration: underline;
}

.page-khuynmi__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-khuynmi__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Border */
}

.page-khuynmi__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-khuynmi__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-khuynmi__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-khuynmi__btn-card {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  font-size: 0.95em;
  border-radius: 6px;
  margin-top: auto;
}

.page-khuynmi__btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

.page-khuynmi__guide-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-khuynmi__guide-step-title {
  font-size: 1.6em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-khuynmi__guide-item p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-khuynmi__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-khuynmi__terms-list {
  list-style: disc;
  margin: 30px auto;
  max-width: 900px;
  color: #A7D9B8; /* Text Secondary */
  padding-left: 25px;
}

.page-khuynmi__terms-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-khuynmi__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-khuynmi__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-khuynmi__faq-question:hover {
  background-color: #13994A;
}

.page-khuynmi__faq-question::-webkit-details-marker, /* Hide default marker for Chrome/Safari */
.page-khuynmi__faq-question::marker { /* Hide default marker for Firefox */
  display: none;
}

.page-khuynmi__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

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

/* Floating buttons for mobile */
.page-khuynmi__floating-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 10px 15px;
  background-color: rgba(8, 22, 15, 0.95); /* Background with opacity */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transform: translateY(100%); /* Hidden by default */
  transition: transform 0.3s ease-in-out;
}

.page-khuynmi__floating-buttons.active {
  transform: translateY(0%);
}

.page-khuynmi__floating-btn {
  flex: 1;
  margin: 0 5px;
  padding: 12px 10px;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__floating-btn--login {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-khuynmi__hero-section {
    padding: 40px 15px;
  }

  .page-khuynmi__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

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

  .page-khuynmi__overview-section,
  .page-khuynmi__categories-section,
  .page-khuynmi__claim-guide-section,
  .page-khuynmi__terms-section,
  .page-khuynmi__faq-section,
  .page-khuynmi__final-cta-section {
    padding: 60px 15px;
  }

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

@media (max-width: 768px) {
  .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-section,
  .page-khuynmi__overview-section,
  .page-khuynmi__categories-section,
  .page-khuynmi__claim-guide-section,
  .page-khuynmi__terms-section,
  .page-khuynmi__faq-section,
  .page-khuynmi__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-khuynmi__hero-section {
    padding-top: 10px !important;
  }

  .page-khuynmi__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-khuynmi__hero-description,
  .page-khuynmi__text-block,
  .page-khuynmi__card-text,
  .page-khuynmi__guide-item p,
  .page-khuynmi__terms-list li,
  .page-khuynmi__faq-answer p {
    font-size: 0.95em;
  }

  .page-khuynmi__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-khuynmi__btn-primary,
  .page-khuynmi__btn-secondary,
  .page-khuynmi__btn-card,
  .page-khuynmi__floating-btn,
  .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__grid-container {
    grid-template-columns: 1fr;
  }

  .page-khuynmi__card-image {
    height: 200px;
  }

  .page-khuynmi__guide-item {
    padding: 20px;
  }

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

  .page-khuynmi__floating-buttons {
    transform: translateY(0%); /* Always visible on mobile */
  }
}