/* style/no-hu.css */
/* Base styles for .page-no-hu */
.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on light background */
    background: #FFFFFF; /* Body background from shared.css is white */
}

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on body padding-top from shared.css */
    padding-bottom: 60px;
    background-color: #f8f8f8; /* Light background for hero section */
}

.page-no-hu__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0 15px;
}

.page-no-hu__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    padding-right: 20px;
}

.page-no-hu__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    color: #017439; /* Primary color for H1 */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-no-hu__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555555;
}

.page-no-hu__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-text {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-no-hu__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
}

.page-no-hu__btn-secondary {
    background-color: #FFFFFF;
    color: #017439; /* Primary color */
    border: 2px solid #017439;
}

.page-no-hu__btn-secondary:hover {
    background-color: #017439;
    color: #FFFFFF;
}

.page-no-hu__btn-primary--yellow-text {
    background-color: #C30808;
    color: #FFFF00;
    border-color: #C30808;
}

.page-no-hu__btn-primary--yellow-text:hover {
    background-color: #e02020;
    border-color: #e02020;
}

.page-no-hu__btn-text {
    color: #017439;
    background: transparent;
    border: 1px solid #017439;
    padding: 8px 15px;
    font-size: 0.95rem;
    margin-top: 10px;
}

.page-no-hu__btn-text:hover {
    background-color: #017439;
    color: #FFFFFF;
}

.page-no-hu__hero-image {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: center;
}

.page-no-hu__hero-side-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* General Section Styling */
.page-no-hu__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    box-sizing: border-box;
}

.page-no-hu__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-no-hu__section-title--white {
    color: #FFFFFF;
}

.page-no-hu__text-block {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-no-hu__text-block--white {
    color: #f0f0f0;
}

.page-no-hu__highlight {
    color: #017439;
    font-weight: bold;
}

.page-no-hu__dark-bg {
    background-color: #017439;
    color: #FFFFFF;
}

.page-no-hu__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

/* Intro Section */
.page-no-hu__intro-section {
    padding: 60px 0;
}

.page-no-hu__feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-no-hu__feature-item {
    flex: 1 1 280px; /* Base width for items */
    max-width: 350px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-no-hu__icon-box-media {
    width: 200px; /* Enforce square for circular images */
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #017439;
    box-shadow: 0 0 0 5px rgba(1, 116, 57, 0.2);
}

.page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%; /* Ensure image itself is also circular */
}

.page-no-hu__feature-title {
    font-size: 1.5rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__feature-description {
    font-size: 1rem;
    color: #555555;
}

/* Advantages Section */
.page-no-hu__advantages-section {
    padding: 60px 0;
}

.page-no-hu__advantage-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__advantage-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-no-hu__advantage-heading {
    font-size: 1.4rem;
    color: #FFFF00; /* Yellow for headings on dark background */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__advantage-text {
    font-size: 1rem;
    color: #f0f0f0;
}

/* Guide Section */
.page-no-hu__guide-section {
    padding: 60px 0;
}

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

.page-no-hu__guide-step-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.page-no-hu__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #017439;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-no-hu__step-title {
    font-size: 1.4rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__step-description {
    font-size: 1rem;
    color: #555555;
}

.page-no-hu__guide-image-wrapper {
    margin-top: 50px;
    text-align: center;
}

.page-no-hu__guide-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* FAQ Section */
.page-no-hu__faq-section {
    padding: 60px 0;
}

.page-no-hu__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-no-hu__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    color: #017439;
    font-weight: bold;
    cursor: pointer;
    background-color: #e6f7ef; /* Lighter shade of primary */
    border-bottom: 1px solid #d0e7dc;
    list-style: none; /* Hide default marker for details/summary */
}

.page-no-hu__faq-question::-webkit-details-marker,
.page-no-hu__faq-question::marker {
    display: none;
}

.page-no-hu__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #017439;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    content: "−";
}

.page-no-hu__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    background-color: #ffffff;
}

/* CTA Banner */
.page-no-hu__cta-banner {
    padding: 80px 0;
    text-align: center;
}

.page-no-hu__cta-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Responsive Styles for Mobile */
@media (max-width: 1024px) {
    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .page-no-hu__hero-content {
        padding-right: 0;
    }

    .page-no-hu__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .page-no-hu__hero-image {
        order: -1; /* Image above text on smaller screens */
    }

    .page-no-hu__feature-grid,
    .page-no-hu__advantage-list,
    .page-no-hu__guide-steps {
        grid-template-columns: 1fr;
    }

    .page-no-hu__feature-item,
    .page-no-hu__advantage-item,
    .page-no-hu__guide-step-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 40px;
    }
    .page-no-hu__hero-container {
        padding: 0 15px;
        gap: 20px;
    }
    .page-no-hu__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-no-hu__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-no-hu__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        width: 100%; /* Ensure container fills width */
    }
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        font-size: 1rem;
    }
    .page-no-hu__hero-side-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* General Content Area & Images */
    .page-no-hu__content-area {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-no-hu__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-no-hu__text-block {
        font-size: 0.95rem;
    }
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    /* Module 1 - Intro Section (Feature Grid) */
    .page-no-hu__intro-section {
        padding: 40px 0;
    }
    .page-no-hu__feature-grid {
        gap: 20px;
    }
    .page-no-hu__feature-item {
        padding: 15px;
    }
    .page-no-hu__icon-box-media {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }
    .page-no-hu__icon-box-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .page-no-hu__feature-title {
        font-size: 1.3rem;
    }
    .page-no-hu__feature-description {
        font-size: 0.9rem;
    }

    /* Advantages Section */
    .page-no-hu__advantages-section {
        padding: 40px 0;
    }
    .page-no-hu__advantage-item {
        padding: 20px;
    }
    .page-no-hu__advantage-heading {
        font-size: 1.25rem;
    }
    .page-no-hu__advantage-text {
        font-size: 0.95rem;
    }

    /* Guide Section */
    .page-no-hu__guide-section {
        padding: 40px 0;
    }
    .page-no-hu__guide-steps {
        gap: 20px;
    }
    .page-no-hu__guide-step-item {
        padding: 20px;
    }
    .page-no-hu__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    .page-no-hu__step-title {
        font-size: 1.3rem;
    }
    .page-no-hu__step-description {
        font-size: 0.95rem;
    }
    .page-no-hu__guide-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* FAQ Section */
    .page-no-hu__faq-section {
        padding: 40px 0;
    }
    .page-no-hu__faq-question {
        padding: 15px 20px;
        font-size: 1.05rem;
    }
    .page-no-hu__faq-toggle {
        font-size: 1.3rem;
    }
    .page-no-hu__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95rem;
    }

    /* CTA Banner */
    .page-no-hu__cta-banner {
        padding: 50px 0;
    }
    .page-no-hu__cta-banner-content {
        gap: 15px;
    }
    .page-no-hu__btn-primary--yellow-text {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        font-size: 1rem;
    }
}