.page-nh {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-nh__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
}

.page-nh__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 20px; /* Space between image and content */
}

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

.page-nh__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-nh__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Flexible font size for H1 */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-nh__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-nh__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    gap: 20px;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%; /* Ensure container takes full width */
    box-sizing: border-box;
}

.page-nh__btn-primary,
.page-nh__btn-secondary,
.page-nh a[class*="button"],
.page-nh a[class*="btn"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button takes full width if needed */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

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

.page-nh__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

.page-nh__btn-secondary:hover {
    background: #0A4B2C; /* Deep Green */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 42, 0.4);
}

/* General Section Styling */
.page-nh__section {
    padding: 60px 20px;
    background-color: #08160F; /* Background */
    border-bottom: 1px solid #1E3A2A; /* Divider */
    overflow: hidden; /* Ensure content doesn't overflow */
}

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

.page-nh__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-nh__grid--reverse {
    grid-template-columns: 1fr 1fr; /* Default order */
}

.page-nh__grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.page-nh p {
    margin-bottom: 15px;
    color: #A7D9B8; /* Text Secondary */
}

.page-nh ul,
.page-nh ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
}

.page-nh ul li,
.page-nh ol li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-nh ul li::before {
    content: '•';
    color: #2AD16F; /* Highlight color */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-nh ol li::before {
    content: counter(list-item) '.';
    counter-increment: list-item;
    color: #2AD16F; /* Highlight color */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1em;
}

.page-nh__keyword {
    color: #57E38D; /* Glow */
    font-weight: bold;
}

.page-nh__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-nh__text-link {
    color: #2AD16F; /* Button color for links in text */
    text-decoration: underline;
    font-weight: bold;
}

.page-nh__text-link:hover {
    color: #57E38D; /* Glow */
}

/* FAQ Section */
.page-nh__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-nh__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-nh__faq-item summary { /* For details tag */
    list-style: none;
}
.page-nh__faq-item summary::-webkit-details-marker { /* For details tag */
    display: none;
}

.page-nh__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.15rem;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-nh__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-nh__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #2AD16F; /* Button color */
}

.page-nh__faq-answer {
    padding: 0 20px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
    max-height: 0; /* Hidden by default for JS fallback */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-nh__faq-item[open] .page-nh__faq-answer { /* For details tag */
    max-height: 1000px; /* Sufficiently large to show content */
}

.page-nh__faq-item.active .page-nh__faq-answer { /* For JS fallback */
    max-height: 1000px; /* Sufficiently large to show content */
}

.page-nh__faq-item.active .page-nh__faq-toggle { /* For JS fallback */
    content: '−';
}


/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .page-nh__grid {
        grid-template-columns: 1fr;
    }
    .page-nh__grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-nh__grid-item:first-child {
        order: 0; /* Reset order for single column */
    }
}

@media (max-width: 768px) {
    .page-nh__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-nh__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-nh__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-nh__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-nh__btn-primary,
    .page-nh__btn-secondary,
    .page-nh a[class*="button"],
    .page-nh a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-nh__section {
        padding: 40px 15px;
    }

    .page-nh__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }

    .page-nh__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Images responsiveness */
    .page-nh img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Image containers responsiveness */
    .page-nh__hero-image-wrapper,
    .page-nh__grid-item,
    .page-nh__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-nh p,
    .page-nh ul li,
    .page-nh ol li {
        font-size: 0.95rem;
    }
}

/* Ensure no small icons are used */
.page-nh img[width="32"], .page-nh img[height="32"],
.page-nh img[width="40"], .page-nh img[height="40"],
.page-nh img[width="48"], .page-nh img[height="48"],
.page-nh img[width="60"], .page-nh img[height="60"],
.page-nh img[width="64"], .page-nh img[height="64"],
.page-nh img[width="80"], .page-nh img[height="80"],
.page-nh img[width="100"], .page-nh img[height="100"] {
    min-width: 200px !important;
    min-height: 200px !important;
    width: auto !important;
    height: auto !important;
}

/* Ensure video responsiveness - if any video is added */
.page-nh video,
.page-nh__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-nh__video-section,
.page-nh__video-container,
.page-nh__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-nh video,
  .page-nh__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-nh__video-section,
  .page-nh__video-container,
  .page-nh__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-nh__video-section {
    padding-top: 10px !important;
  }
  .page-nh__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}