.page-blog-6ff6-nhacai-features-interpretation {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color, assuming dark body background */
  background-color: var(--background, #08160F); /* Fallback for body background */
}

/* Section Styling */
.page-blog-6ff6-nhacai-features-interpretation__section {
  padding: 80px 20px;
  text-align: center;
}

.page-blog-6ff6-nhacai-features-interpretation__dark-bg {
  background-color: var(--background-deep-green, #0A4B2C); /* Using Deep Green for dark sections */
  color: var(--text-main, #F2FFF6);
}

.page-blog-6ff6-nhacai-features-interpretation__light-bg {
  background-color: var(--card-bg, #11271B); /* Using Card BG for light sections, still dark but lighter than deep green */
  color: var(--text-main, #F2FFF6); /* Still light text for contrast */
}

.page-blog-6ff6-nhacai-features-interpretation__gold-bg {
  background-color: var(--gold, #F2C14E);
  color: #333333; /* Dark text for gold background */
}

.page-blog-6ff6-nhacai-features-interpretation__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-6ff6-nhacai-features-interpretation__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--text-main, #F2FFF6);
  line-height: 1.2;
}

.page-blog-6ff6-nhacai-features-interpretation__light-bg .page-blog-6ff6-nhacai-features-interpretation__section-title {
  color: var(--text-main, #F2FFF6); /* Keep light text on this section as well */
}

.page-blog-6ff6-nhacai-features-interpretation__gold-bg .page-blog-6ff6-nhacai-features-interpretation__section-title {
  color: #333333; /* Dark text on gold background */
}

/* Hero Section */
.page-blog-6ff6-nhacai-features-interpretation__hero-section {
  position: relative;
  overflow: hidden;
  padding: 10px 0 80px 0; /* Small top padding, then larger bottom padding */
  display: flex;
  flex-direction: column; /* Image above, content below */
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

.page-blog-6ff6-nhacai-features-interpretation__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px; /* Space between image and text */
}

.page-blog-6ff6-nhacai-features-interpretation__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-blog-6ff6-nhacai-features-interpretation__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-6ff6-nhacai-features-interpretation__main-title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.page-blog-6ff6-nhacai-features-interpretation__description {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-6ff6-nhacai-features-interpretation__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-blog-6ff6-nhacai-features-interpretation__btn-primary,
.page-blog-6ff6-nhacai-features-interpretation__btn-secondary,
.page-blog-6ff6-nhacai-features-interpretation a[class*="btn"] {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  max-width: 100%; /* Ensure button doesn't overflow */
}

.page-blog-6ff6-nhacai-features-interpretation__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

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

.page-blog-6ff6-nhacai-features-interpretation__btn-secondary {
  background-color: transparent;
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-6ff6-nhacai-features-interpretation__btn-secondary:hover {
  background-color: var(--border-color, #2E7A4E);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Content Blocks */
.page-blog-6ff6-nhacai-features-interpretation__content-block {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-blog-6ff6-nhacai-features-interpretation__content-block p {
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-6ff6-nhacai-features-interpretation__content-block a {
  color: var(--primary-color, #11A84E);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-6ff6-nhacai-features-interpretation__content-block a:hover {
  text-decoration: underline;
}

.page-blog-6ff6-nhacai-features-interpretation__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Features Grid */
.page-blog-6ff6-nhacai-features-interpretation__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-6ff6-nhacai-features-interpretation__feature-card {
  padding: 30px;
  border-radius: 12px;
  background-color: var(--card-bg, #11271B);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-6ff6-nhacai-features-interpretation__feature-card .page-blog-6ff6-nhacai-features-interpretation__card-title {
  font-size: 22px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-6ff6-nhacai-features-interpretation__feature-card p {
  font-size: 16px;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.7;
}

/* Feature List */
.page-blog-6ff6-nhacai-features-interpretation__feature-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-blog-6ff6-nhacai-features-interpretation__feature-list li {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid var(--divider-color, #1E3A2A);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-6ff6-nhacai-features-interpretation__list-item-title {
  font-size: 24px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-6ff6-nhacai-features-interpretation__feature-list p {
  font-size: 17px;
  color: var(--text-secondary, #A7D9B8);
}

/* Guide Steps */
.page-blog-6ff6-nhacai-features-interpretation__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-6ff6-nhacai-features-interpretation__guide-item {
  padding: 30px;
  border-radius: 12px;
  background-color: var(--card-bg, #11271B);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-6ff6-nhacai-features-interpretation__guide-item .page-blog-6ff6-nhacai-features-interpretation__card-title {
  font-size: 22px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-6ff6-nhacai-features-interpretation__guide-item p {
  font-size: 16px;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.7;
}

/* FAQ Section */
.page-blog-6ff6-nhacai-features-interpretation__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  margin-top: 40px;
}

.page-blog-6ff6-nhacai-features-interpretation__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--divider-color, #1E3A2A);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-6ff6-nhacai-features-interpretation__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  background-color: var(--card-bg, #11271B);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-6ff6-nhacai-features-interpretation__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-6ff6-nhacai-features-interpretation__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

.page-blog-6ff6-nhacai-features-interpretation__faq-qtext {
  flex-grow: 1;
}

.page-blog-6ff6-nhacai-features-interpretation__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color, #57E38D);
}

.page-blog-6ff6-nhacai-features-interpretation__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: var(--text-secondary, #A7D9B8);
  text-align: left;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-blog-6ff6-nhacai-features-interpretation__faq-item[open] .page-blog-6ff6-nhacai-features-interpretation__faq-answer {
  max-height: 1000px; /* Sufficiently large to show content */
}

.page-blog-6ff6-nhacai-features-interpretation__faq-answer p {
  margin-bottom: 10px;
}

/* Call to Action Section */
.page-blog-6ff6-nhacai-features-interpretation__cta-section {
  padding: 60px 20px;
  background-color: var(--gold, #F2C14E);
  color: #333333;
}

.page-blog-6ff6-nhacai-features-interpretation__cta-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-blog-6ff6-nhacai-features-interpretation__cta-title {
  font-size: clamp(30px, 4vw, 48px);
  color: #333333;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-6ff6-nhacai-features-interpretation__cta-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #555555;
  margin-bottom: 40px;
}

.page-blog-6ff6-nhacai-features-interpretation__cta-section .page-blog-6ff6-nhacai-features-interpretation__btn-primary {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Invert gradient for contrast on gold */
  color: #ffffff;
}

.page-blog-6ff6-nhacai-features-interpretation__cta-section .page-blog-6ff6-nhacai-features-interpretation__btn-primary:hover {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-6ff6-nhacai-features-interpretation__cta-section .page-blog-6ff6-nhacai-features-interpretation__btn-secondary {
  border-color: #333333;
  color: #333333;
}

.page-blog-6ff6-nhacai-features-interpretation__cta-section .page-blog-6ff6-nhacai-features-interpretation__btn-secondary:hover {
  background-color: #333333;
  color: #ffffff;
}

.page-blog-6ff6-nhacai-features-interpretation__cta-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-6ff6-nhacai-features-interpretation__section {
    padding: 40px 15px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__main-title {
    font-size: 32px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__description {
    font-size: 16px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__btn-primary,
  .page-blog-6ff6-nhacai-features-interpretation__btn-secondary,
  .page-blog-6ff6-nhacai-features-interpretation a[class*="btn"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__section-title {
    font-size: 28px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__feature-card,
  .page-blog-6ff6-nhacai-features-interpretation__guide-item,
  .page-blog-6ff6-nhacai-features-interpretation__faq-item {
    padding: 20px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__feature-card .page-blog-6ff6-nhacai-features-interpretation__card-title,
  .page-blog-6ff6-nhacai-features-interpretation__list-item-title,
  .page-blog-6ff6-nhacai-features-interpretation__guide-item .page-blog-6ff6-nhacai-features-interpretation__card-title {
    font-size: 20px;
  }

  .page-blog-6ff6-nhacai-features-interpretation p,
  .page-blog-6ff6-nhacai-features-interpretation li p {
    font-size: 15px;
  }

  /* Responsive images */
  .page-blog-6ff6-nhacai-features-interpretation img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-6ff6-nhacai-features-interpretation__section,
  .page-blog-6ff6-nhacai-features-interpretation__card,
  .page-blog-6ff6-nhacai-features-interpretation__container,
  .page-blog-6ff6-nhacai-features-interpretation__hero-section,
  .page-blog-6ff6-nhacai-features-interpretation__cta-section,
  .page-blog-6ff6-nhacai-features-interpretation__hero-image-wrapper,
  .page-blog-6ff6-nhacai-features-interpretation__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden; /* Ensure no overflow */
  }

  .page-blog-6ff6-nhacai-features-interpretation__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__faq-answer {
    padding: 0 20px 15px;
  }

  .page-blog-6ff6-nhacai-features-interpretation__cta-title {
    font-size: 26px;
  }
}