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

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

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

.page-khuynmi__section-title {
  font-size: 38px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-khuynmi__section-description {
  font-size: 18px;
  color: #1F2D3D;
  margin-bottom: 40px;
  max-width: 800px;
  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;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #F4F7FB;
}

.page-khuynmi__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width on desktop for flex item */
}

.page-khuynmi__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.page-khuynmi__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-khuynmi__hero-content h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  color: #1F2D3D;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-khuynmi__hero-content p {
  font-size: 20px;
  color: #1F2D3D;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-khuynmi__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
  border: none;
}

.page-khuynmi__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-khuynmi__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.2);
}

.page-khuynmi__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(47, 107, 255, 0.3);
}

.page-khuynmi__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #2F6BFF;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #D6E2FF; /* Border */
  transition: all 0.3s ease;
  margin-left: 15px;
}

.page-khuynmi__btn-secondary:hover {
  background: #F4F7FB;
  border-color: #2F6BFF;
  transform: translateY(-2px);
}

/* Intro Section */
.page-khuynmi__intro-section p {
  text-align: left;
  font-size: 17px;
  color: #1F2D3D;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Promotion Types Grid */
.page-khuynmi__promotion-types {
  background-color: #F4F7FB;
}

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

.page-khuynmi__card {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-khuynmi__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-khuynmi__card-title {
  font-size: 24px;
  color: #1F2D3D;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.page-khuynmi__card-text {
  font-size: 16px;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How To Claim Section */
.page-khuynmi__how-to-claim {
  background-color: #F4F7FB;
}

.page-khuynmi__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-khuynmi__step-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.page-khuynmi__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: #2F6BFF;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  margin-right: 20px;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-khuynmi__step-content h3 {
  font-size: 22px;
  color: #1F2D3D;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 700;
}

.page-khuynmi__step-content p {
  font-size: 16px;
  color: #1F2D3D;
  margin: 0;
}

.page-khuynmi__step-content p a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-khuynmi__step-content p a:hover {
  text-decoration: underline;
}

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

/* Terms & Conditions */
.page-khuynmi__terms-conditions {
  background-color: #FFFFFF;
}

.page-khuynmi__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  color: #1F2D3D;
  font-size: 17px;
}

.page-khuynmi__list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.page-khuynmi__list li::before {
  content: '•';
  color: #2F6BFF;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* Why Choose Section */
.page-khuynmi__why-choose {
  background-color: #F4F7FB;
}

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

.page-khuynmi__feature-item {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-khuynmi__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-khuynmi__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  display: inline-block;
}

.page-khuynmi__feature-item h3 {
  font-size: 22px;
  color: #1F2D3D;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-khuynmi__feature-item p {
  font-size: 16px;
  color: #1F2D3D;
}

/* FAQ Section */
.page-khuynmi__faq-section {
  background-color: #FFFFFF;
}

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

details.page-khuynmi__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

details.page-khuynmi__faq-item summary.page-khuynmi__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-khuynmi__faq-item summary.page-khuynmi__faq-question:hover {
  background: #F4F7FB;
}

.page-khuynmi__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-khuynmi__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-khuynmi__faq-item .page-khuynmi__faq-answer {
  padding: 0 25px 25px;
  background: #f9fbfd;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #1F2D3D;
  line-height: 1.7;
}

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

/* Latest News/Blog Section */
.page-khuynmi__latest-news {
  background-color: #F4F7FB;
}

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

.page-khuynmi__news-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

.page-khuynmi__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-khuynmi__news-title {
  font-size: 22px;
  color: #1F2D3D;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.page-khuynmi__news-date {
  font-size: 14px;
  color: #6FA3FF;
  margin-bottom: 15px;
}

.page-khuynmi__news-excerpt {
  font-size: 16px;
  color: #1F2D3D;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-khuynmi__view-all {
  margin-top: 50px;
}

.page-khuynmi__view-all .page-khuynmi__btn-secondary {
  margin-left: 0; /* Override default margin for single button */
}

/* Final CTA Section */
.page-khuynmi__cta-final {
  background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
  padding: 80px 20px;
}

.page-khuynmi__cta-final .page-khuynmi__section-title,
.page-khuynmi__cta-final .page-khuynmi__section-description {
  color: #ffffff;
}

.page-khuynmi__cta-final .page-khuynmi__cta-button {
  background: #ffffff;
  color: #2F6BFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-khuynmi__cta-final .page-khuynmi__cta-button:hover {
  background: #e0e0e0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-khuynmi__section-title {
    font-size: 34px;
  }
  .page-khuynmi__section-description {
    font-size: 17px;
  }
  .page-khuynmi__hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
  }
  .page-khuynmi__hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-khuynmi__section {
    padding: 40px 15px;
  }
  .page-khuynmi__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-khuynmi__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* HERO */
  .page-khuynmi__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-khuynmi__hero-image {
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .page-khuynmi__hero-content h1 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }
  .page-khuynmi__hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-khuynmi__cta-button {
    padding: 12px 30px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General Image & Button Responsive Rules */
  .page-khuynmi img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-khuynmi__card-image {
    height: 180px;
  }
  .page-khuynmi__news-image {
    height: 160px;
  }

  .page-khuynmi__section,
  .page-khuynmi__card,
  .page-khuynmi__container,
  .page-khuynmi__faq-item,
  .page-khuynmi__news-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-khuynmi__card, .page-khuynmi__news-card {
    padding-left: 0;
    padding-right: 0;
  }
  .page-khuynmi__card-content, .page-khuynmi__news-content {
    padding: 20px;
  }

  .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;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-khuynmi__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }

  /* Promotion Types Grid */
  .page-khuynmi__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* How To Claim */
  .page-khuynmi__steps-list {
    gap: 20px;
  }
  .page-khuynmi__step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 20px;
    margin-right: 15px;
  }
  .page-khuynmi__step-content h3 {
    font-size: 20px;
  }
  .page-khuynmi__step-content p {
    font-size: 15px;
  }

  /* Why Choose */
  .page-khuynmi__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-khuynmi__feature-item {
    padding: 25px;
  }
  .page-khuynmi__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  .page-khuynmi__feature-item h3 {
    font-size: 20px;
  }
  .page-khuynmi__feature-item p {
    font-size: 15px;
  }

  /* FAQ */
  details.page-khuynmi__faq-item summary.page-khuynmi__faq-question {
    padding: 15px 20px;
  }
  .page-khuynmi__faq-qtext {
    font-size: 16px;
  }
  .page-khuynmi__faq-toggle {
    font-size: 24px;
    width: 25px;
    margin-left: 15px;
  }
  details.page-khuynmi__faq-item .page-khuynmi__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* Latest News */
  .page-khuynmi__news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-khuynmi__news-title {
    font-size: 20px;
  }
  .page-khuynmi__news-excerpt {
    font-size: 15px;
  }

  /* Final CTA */
  .page-khuynmi__cta-final {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-khuynmi__section-title {
    font-size: 24px;
  }
  .page-khuynmi__hero-content h1 {
    font-size: clamp(22px, 7vw, 30px);
  }
  .page-khuynmi__hero-content p {
    font-size: 15px;
  }
  .page-khuynmi__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-khuynmi__card-title {
    font-size: 20px;
  }
  .page-khuynmi__card-text {
    font-size: 14px;
  }
  .page-khuynmi__news-title {
    font-size: 18px;
  }
  .page-khuynmi__news-excerpt {
    font-size: 14px;
  }
  .page-khuynmi__feature-item h3 {
    font-size: 18px;
  }
  .page-khuynmi__feature-item p {
    font-size: 14px;
  }
  .page-khuynmi__faq-qtext {
    font-size: 15px;
  }
  .page-khuynmi__faq-answer {
    font-size: 14px;
  }
}