/* style/no-hu.css */

/* General styles for the page */
.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for default white body background */
    background-color: #FFFFFF;
}

.page-no-hu__content-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-no-hu__content-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-no-hu__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Fixed header spacing - ~10px top padding */
    padding-bottom: 40px;
    background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient background */
}

.page-no-hu__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 16px;
    gap: 24px;
    box-sizing: border-box;
}

.page-no-hu__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    color: #333333;
}

.page-no-hu__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.2em); /* Responsive H1 font size */
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
}

.page-no-hu__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
}

.page-no-hu__hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.page-no-hu__hero-side-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure it behaves as a block element for max-width/height:auto */
}

/* Primary Button */
.page-no-hu__btn-primary {
    display: inline-block;
    background-color: #26A9E0; /* Main brand color */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #26A9E0;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    text-align: center;
}

.page-no-hu__btn-primary:hover {
    background-color: #1e87c0;
}

/* Secondary Button */
.page-no-hu__btn-secondary {
    display: inline-block;
    background-color: #FFFFFF;
    color: #26A9E0; /* Main brand color */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #26A9E0;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    text-align: center;
}

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

/* Text Link Button */
.page-no-hu__btn-text-link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-no-hu__btn-text-link:hover {
    text-decoration: underline;
    color: #1e87c0;
}


/* Dark Section */
.page-no-hu__dark-section {
    background-color: #f0f8ff; /* Very light blue background, almost white */
    color: #333333;
}

/* Feature Grid (Module 1 style) */
.page-no-hu__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.page-no-hu__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
    transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
    width: 240px; /* Fixed width for circle */
    height: 240px; /* Fixed height for circle */
    aspect-ratio: 1 / 1; /* Ensure perfect circle */
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #26A9E0; /* Brand color border */
    box-sizing: border-box;
}

.page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and fill container */
    border-radius: 50%; /* Ensure image itself is circular within the div */
    display: block;
}

.page-no-hu__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* Guide Section */
.page-no-hu__guide-section {
    background-color: #FFFFFF;
    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-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-no-hu__guide-icon {
    width: 60px;
    height: 60px;
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-no-hu__guide-heading {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-no-hu__guide-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1; /* Make description take available space */
}

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

/* Promo Section */
.page-no-hu__promo-section {
    background-color: #e0f2f7; /* Light blue background */
    padding: 60px 0;
}

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

.page-no-hu__promo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-no-hu__promo-card:hover {
    transform: translateY(-5px);
}

.page-no-hu__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for promo images */
    object-fit: cover;
    display: block;
}

.page-no-hu__promo-card-title {
    font-size: 1.4em;
    color: #26A9E0;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-no-hu__promo-card-description {
    font-size: 1em;
    color: #555555;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-no-hu__promo-card .page-no-hu__btn-primary {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

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

.page-no-hu__faq-list {
    margin-top: 40px;
}

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

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    color: #26A9E0;
    font-weight: bold;
    cursor: pointer;
    background-color: #e0f2f7; /* Light blue background for summary */
    border-bottom: 1px solid #d0e7f0;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
    border-bottom: none; /* No border when open */
}

.page-no-hu__faq-qtext {
    flex-grow: 1;
}

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
}

.page-no-hu__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: #555555;
    background-color: #FFFFFF;
    border-top: 1px solid #f0f0f0; /* Light border for answer content */
}

.page-no-hu__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin */
}

/* CTA Banner */
.page-no-hu__cta-banner {
    background: linear-gradient(90deg, #26A9E0, #1e87c0); /* Blue gradient background */
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.page-no-hu__cta-banner-title {
    font-size: clamp(2em, 4vw, 2.8em);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-no-hu__cta-banner-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__cta-banner .page-no-hu__cta-buttons {
    justify-content: center;
}

.page-no-hu__cta-banner .page-no-hu__btn-primary {
    background-color: #EA7C07; /* Login orange color */
    border-color: #EA7C07;
}

.page-no-hu__cta-banner .page-no-hu__btn-primary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
}

.page-no-hu__cta-banner .page-no-hu__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border-color: #FFFFFF;
}

.page-no-hu__cta-banner .page-no-hu__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #26A9E0;
    border-color: #f0f0f0;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-no-hu__hero-content,
    .page-no-hu__hero-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .page-no-hu__hero-title,
    .page-no-hu__hero-description {
        text-align: center;
    }
    .page-no-hu__hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* General mobile adjustments */
    .page-no-hu {
        font-size: 15px;
        line-height: 1.5;
    }
    .page-no-hu__content-container {
        padding: 20px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-no-hu__content-title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Fixed header spacing */
        padding-bottom: 20px;
    }
    .page-no-hu__hero-container {
        padding: 20px 15px;
        gap: 15px;
    }
    .page-no-hu__hero-title {
        font-size: 2.2em;
    }
    .page-no-hu__hero-description {
        font-size: 1em;
    }
    .page-no-hu__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    /* Buttons - Mobile specific (MUST BE PRESENT) */
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary,
    .page-no-hu a[class*="button"],
    .page-no-hu a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-no-hu__hero-cta-buttons,
    .page-no-hu__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex; /* Ensure flex for column direction */
        flex-direction: column; /* Stack buttons vertically */
    }


    /* Module 1 - Feature Grid */
    .page-no-hu__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__feature-item {
        padding: 20px;
    }
    .page-no-hu__icon-box-media {
        width: 200px !important; /* Retain circular shape */
        height: 200px !important; /* Retain circular shape */
        margin-bottom: 15px;
        border-width: 3px;
    }
    .page-no-hu__feature-title {
        font-size: 1.3em;
    }

    /* Guide Section */
    .page-no-hu__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__guide-item {
        padding: 20px;
    }
    .page-no-hu__guide-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-no-hu__guide-heading {
        font-size: 1.2em;
    }

    /* Promo Section */
    .page-no-hu__promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__promo-card {
        padding-bottom: 15px; /* Adjust padding for buttons */
    }
    .page-no-hu__promo-image {
        height: 180px;
    }
    .page-no-hu__promo-card-title {
        font-size: 1.2em;
        padding: 15px 15px 5px;
    }
    .page-no-hu__promo-card-description {
        padding: 0 15px 15px;
    }
    .page-no-hu__promo-card .page-no-hu__btn-primary {
        margin: 0 15px 15px;
        width: calc(100% - 30px);
    }

    /* FAQ Section */
    .page-no-hu__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-no-hu__faq-toggle {
        font-size: 1.2em;
    }
    .page-no-hu__faq-answer {
        padding: 15px;
    }

    /* CTA Banner */
    .page-no-hu__cta-banner-title {
        font-size: 1.8em;
    }
    .page-no-hu__cta-banner-description {
        font-size: 1em;
    }

    /* Images - Mobile specific (MUST BE PRESENT) */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Exception for circular images in Module 1 */
    .page-no-hu__icon-box-media img {
        height: 100% !important; /* Keep height 100% to fill circle */
        object-fit: cover !important;
    }

    /* All containers with images/buttons must be constrained */
    .page-no-hu__section,
    .page-no-hu__card,
    .page-no-hu__container,
    .page-no-hu__hero-section,
    .page-no-hu__content-section,
    .page-no-hu__guide-section,
    .page-no-hu__promo-section,
    .page-no-hu__faq-section,
    .page-no-hu__cta-banner {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Padding handled by .page-no-hu__content-container for content,
           but sections themselves should be full width */
    }
}