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

.page-khuynmi__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  background-color: #08160F;
}

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

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

.page-khuynmi__hero-content {
  max-width: 900px;
  z-index: 1;
  color: #F2FFF6;
}

.page-khuynmi__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  /* Using clamp for responsive font size, but not excessively large */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-khuynmi__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 30px;
}

.page-khuynmi__section {
  padding: 80px 20px;
  background-color: #08160F;
  color: #F2FFF6;
}

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

.page-khuynmi__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-khuynmi__section-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-khuynmi__card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-khuynmi__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Custom Glow */
}

.page-khuynmi__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-khuynmi__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-khuynmi__card-text {
  font-size: 0.95rem;
  color: #A7D9B8;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-khuynmi__btn-primary,
.page-khuynmi__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-khuynmi__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-khuynmi__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(17, 168, 78, 0.6);
}

.page-khuynmi__btn-secondary {
  background-color: transparent;
  color: #11A84E; /* Main Color */
  border: 2px solid #11A84E;
}

.page-khuynmi__btn-secondary:hover {
  background-color: #11A84E;
  color: #F2FFF6;
}

.page-khuynmi__btn-center {
  display: block;
  margin: 40px auto 0 auto;
}

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

.page-khuynmi__step-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-khuynmi__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 3px 10px rgba(17, 168, 78, 0.5);
}

.page-khuynmi__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-khuynmi__step-text {
  font-size: 0.95rem;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-khuynmi__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-khuynmi__list-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #F2FFF6;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.page-khuynmi__list-item strong {
  color: #57E38D; /* Custom Glow */
  margin-right: 10px;
}

.page-khuynmi__list-item::before {
  content: '✔';
  color: #57E38D; /* Custom Glow */
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-khuynmi__faq-list {
  margin-top: 40px;
}

.page-khuynmi__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-khuynmi__faq-item[open] {
  box-shadow: 0 0 15px #57E38D;
}

.page-khuynmi__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  user-select: none;
  list-style: none; /* For details/summary */
}

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

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

.page-khuynmi__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #57E38D; /* Custom Glow */
  margin-left: 20px;
}

.page-khuynmi__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
  text-align: justify;
}

.page-khuynmi__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Custom Deep Green */
}

.page-khuynmi__cta-description {
  font-size: 1.2rem;
  color: #A7D9B8;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-khuynmi__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-khuynmi__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-khuynmi__hero-description {
    font-size: 1rem;
  }

  .page-khuynmi__section {
    padding: 60px 20px;
  }

  .page-khuynmi__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .page-khuynmi__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-khuynmi {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-khuynmi__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Small top padding for mobile */
  }

  .page-khuynmi__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-khuynmi__hero-description {
    font-size: 0.95rem;
  }

  .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;
  }

  .page-khuynmi__cta-buttons {
    flex-direction: column;
  }

  .page-khuynmi__section,
  .page-khuynmi__card,
  .page-khuynmi__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-khuynmi__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-khuynmi__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-khuynmi__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-khuynmi__cta-section {
    padding: 60px 15px;
  }

  .page-khuynmi img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-khuynmi__video,
  .page-khuynmi video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-khuynmi__video-section,
  .page-khuynmi__video-container,
  .page-khuynmi__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

@media (max-width: 480px) {
  .page-khuynmi__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .page-khuynmi__hero-description {
    font-size: 0.9rem;
  }

  .page-khuynmi__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

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

  .page-khuynmi__card-text,
  .page-khuynmi__step-text,
  .page-khuynmi__list-item,
  .page-khuynmi__faq-answer {
    font-size: 0.9rem;
  }

  .page-khuynmi__btn-primary,
  .page-khuynmi__btn-secondary {
    padding: 12px 20px;
  }
}