.page-nh {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f8f8; /* Body background color from shared.css */
}

.page-nh__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: #08160F; /* Dark background for hero section */
  color: #F2FFF6; /* Main text color for dark background */
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.page-nh__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
  letter-spacing: 1px;
}

.page-nh__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color for dark background */
}

.page-nh__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-nh__btn-primary,
.page-nh__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping for single line buttons */
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-nh__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-nh__btn-secondary {
  background-color: transparent;
  color: #F2FFF6; /* Text Main for dark background */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-nh__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* #2E7A4E with opacity */
  transform: translateY(-2px);
}

.page-nh__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-nh__section {
  padding: 60px 0;
}

.page-nh__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

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

.page-nh__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Primary color for section titles on light background */
}

.page-nh__dark-bg .page-nh__section-title,
.page-nh__text-main {
  color: #F2FFF6;
}

.page-nh__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333; /* Default text color for light background */
}

.page-nh__dark-bg .page-nh__text-block,
.page-nh__text-secondary {
  color: #A7D9B8;
}

.page-nh__link {
  color: #11A84E;
  text-decoration: none;
  font-weight: 600;
}

.page-nh__link:hover {
  text-decoration: underline;
}

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

.page-nh__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-nh__card {
  background-color: #11271B; /* Card BG color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #F2FFF6; /* Main text color for dark background */
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px;
}

.page-nh__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-nh__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2FFF6;
}

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

.page-nh__ordered-list,
.page-nh__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-nh__ordered-list li,
.page-nh__unordered-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

.page-nh__dark-bg .page-nh__ordered-list li,
.page-nh__dark-bg .page-nh__unordered-list li {
  color: #A7D9B8;
}

.page-nh__responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-nh__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-nh__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  color: #11A84E; /* Primary color for FAQ question */
  list-style: none; /* For details/summary */
}

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

.page-nh__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #11A84E;
  transition: transform 0.3s ease;
}

.page-nh__faq-item[open] .page-nh__faq-toggle {
  transform: rotate(45deg);
}

.page-nh__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  background-color: #ffffff;
}

.page-nh__conclusion {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-nh__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-nh__text-content {
    order: 2;
  }
  .page-nh__image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
  .page-nh__why-choose .page-nh__text-content {
    order: 1;
  }
  .page-nh__why-choose .page-nh__image-wrapper {
    order: 2;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-nh__hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .page-nh__hero-description {
    font-size: 1rem;
  }
  .page-nh__section-title {
    font-size: 1.8rem;
  }
  .page-nh__card {
    padding: 20px;
    min-height: auto;
  }
  .page-nh__card-title {
    font-size: 1.3rem;
  }
  .page-nh__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-nh__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  .page-nh__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-nh__btn-primary,
  .page-nh__btn-secondary {
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-nh__section,
  .page-nh__card,
  .page-nh__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-nh__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-nh__hero-content {
    margin-top: 20px;
  }
  .page-nh__section-title {
    font-size: 1.5rem;
  }
  .page-nh__hero-description {
    font-size: 0.9rem;
  }
  .page-nh__text-block {
    font-size: 0.9rem;
  }
  .page-nh__card-text {
    font-size: 0.85rem;
  }
  .page-nh__faq-question {
    font-size: 0.9rem;
  }
  .page-nh__faq-answer {
    font-size: 0.85rem;
  }
}