/* style/nh.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-color: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-nh {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}

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

.page-nh__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-green-color);
    overflow: hidden;
}

.page-nh__hero-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

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

.page-nh__hero-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    max-width: 900px;
    box-sizing: border-box;
}

.page-nh__main-title {
    font-size: clamp(2em, 5vw, 3.2em);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
    line-height: 1.2;
}

.page-nh__description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-nh__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-nh__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-nh__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-nh__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-nh__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.page-nh__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-nh__text-block {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-nh__introduction-section,
.page-nh__promotions-section,
.page-nh__tips-section,
.page-nh__cta-final-section {
    background-color: var(--bg-color);
}

.page-nh__dark-bg {
    background-color: var(--deep-green-color);
    color: var(--text-main);
}

.page-nh__light-bg {
    background-color: var(--bg-color);
    color: var(--text-secondary);
}

.page-nh__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-nh__feature-card,
.page-nh__promo-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}

.page-nh__feature-title,
.page-nh__promo-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-nh__feature-description,
.page-nh__promo-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-nh__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-nh__cta-full-width {
    text-align: center;
    margin-top: 50px;
}

.page-nh__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-nh__step-item {
    background-color: var(--card-bg);
    border-left: 5px solid var(--primary-color);
    padding: 20px 25px 20px 60px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-nh__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--text-main);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
}

.page-nh__step-title {
    color: var(--gold-color);
    font-size: 1.25em;
    margin-bottom: 10px;
}

.page-nh__step-description {
    color: var(--text-secondary);
    font-size: 0.95em;
}

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

.page-nh__tip-item {
    background-color: var(--card-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-nh__tip-item strong {
    color: var(--primary-color);
}

.page-nh__faq-list {
    margin-top: 30px;
}

.page-nh__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-nh__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

.page-nh__faq-qtext {
    flex-grow: 1;
    color: var(--text-main);
}

.page-nh__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: var(--secondary-color);
}

.page-nh__faq-item[open] .page-nh__faq-toggle {
    content: '−';
}

.page-nh__faq-answer {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-nh__cta-final-section {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-nh {
        font-size: 15px;
    }

    .page-nh__container {
        padding: 20px 15px;
    }

    .page-nh__hero-content {
        padding: 30px 15px;
    }

    .page-nh__main-title {
        font-size: 2em;
    }

    .page-nh__description {
        font-size: 1em;
    }

    .page-nh__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-nh__btn-primary,
    .page-nh__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
    }

    .page-nh__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-nh__features-grid,
    .page-nh__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-nh__feature-card,
    .page-nh__promo-card {
        padding: 20px;
    }

    .page-nh__promo-image {
        height: 180px;
    }

    .page-nh__step-item {
        padding: 15px 15px 15px 50px;
    }

    .page-nh__step-item::before {
        left: 10px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }

    .page-nh__step-title {
        font-size: 1.1em;
    }

    .page-nh__faq-item summary {
        padding: 15px;
        font-size: 1em;
    }

    .page-nh__faq-answer {
        padding: 0 15px 15px;
    }
    
    /* Mobile image and video responsiveness */
    .page-nh img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-nh video,
    .page-nh__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-nh__section,
    .page-nh__card,
    .page-nh__container,
    .page-nh__video-section,
    .page-nh__video-container,
    .page-nh__video-wrapper,
    .page-nh__cta-buttons,
    .page-nh__button-group,
    .page-nh__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }
    
    .page-nh__video-section {
        padding-top: 10px !important;
    }
    
    .page-nh__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-nh__cta-buttons .page-nh__btn-primary, .page-nh__cta-buttons .page-nh__btn-secondary {
        flex: 1 1 100%; /* Make buttons stack vertically */
    }
}