/* ==========================================================================
    Base Styles & Resets (Similar to before, but might be tweaked)
    ========================================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f7f6; /* A slightly different background */
    color: #333;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

button.button {
    all: unset; /* Removes default button styling */
    display: inline-block; /* Ensures it behaves like an <a> */
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.button.primary {
    background-color: #007bff;
    color: #fff;
}

.button.primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.button.secondary {
    background-color: rgb(249, 106, 42);
    color: #fff;
    border: 1px solid rgb(249, 106, 42);
}

.button.secondary:hover {
    background-color: rgba(249, 106, 42, 0.8);
    border-color: rgba(249, 106, 42, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
    Header Section (Flexible Layout) - Optimized for Mobile
    ========================================================================== */
.site-header {
    background-color: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.site-logo img {
    max-height: 40px;
}

/* ==========================================================================
    Header Section (Desktop Layout)
    ========================================================================== */
.site-header {
    background-color: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between; /* Puts space between the logo and navigation */
    align-items: center; /* Vertically aligns the logo and navigation */
    max-width: 1200px; /* Match your container max-width */
    margin: 0 auto; /* Center the header content */
    padding: 0 20px; /* Keep some padding on the sides */
}

.site-logo img {
    max-height: 40px;
}

/* ==========================================================================
    Navigation Styles (Desktop Layout)
    ========================================================================== */
.site-navigation {
    display: flex;
    align-items: center;
}

.menu-wrapper {
    display: block;
    position: static;
    width: auto;
    background-color: transparent;
    box-shadow: none;
    z-index: auto;
}

.menu-wrapper.active {
    display: none;
}

.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.main-menu li {
    margin-left: 20px;
}

.main-menu li:first-child {
    margin-left: 0;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.main-menu a:hover {
    color: #007bff;
}

/* Call-to-Action Button in Navigation */
.main-menu .cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    margin-left: 20px;
}

.main-menu .cta-button:hover {
    background-color: #0056b3;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    margin-left: 20px;
}

.hamburger-menu .line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: 0.3s ease;
}

/* ==========================================================================
    Mobile-Specific Styles (Adjustments for Mobile) - Height and Hamburger Alignment - More Up
    ========================================================================== */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
        height: 60px;
        display: flex;
        align-items: center;
        height: 65px;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        flex-grow: 1;
        height: 100%;
    }

    .site-logo img {
        max-height: 30px;
    }

    .site-navigation {
        width: auto;
        margin-left: auto;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        overflow: hidden;
        z-index: 999;
        height: 0; /* Changed height to 0 initially */
        transition: height 0.3s ease-in-out; /* Added transition for smooth open/close */
    }

    .menu-wrapper.active {
        display: block;
        height: auto !important; /* Use !important to ensure override */
        padding: 15px; /* Re-added padding */
    }

    .main-menu {
        list-style: none;
        padding: 0; /* Removed padding from main-menu */
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .main-menu li {
        margin-left: 0;
        border-bottom: 1px solid #eee;
    }

    .main-menu li:last-child {
        border-bottom: none;
    }

    .main-menu a {
        display: block;
        padding: 15px;
        text-align: left;
    }

    .hamburger-menu {
        display: flex;
        align-self: center;
        z-index: 1001;
        margin-left: auto;
        margin-top: -70px; /* Increased upward adjustment even more */
    }

    .hamburger-menu.active .line:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger-menu.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .line:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .main-menu .cta-button {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        text-align: center;
    }
}
/* ==========================================================================
    Call-to-Action Button
    ========================================================================== */
.main-menu .cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
}

.main-menu .cta-button:hover {
    background-color: #0056b3;
}

/* ==========================================================================
    Hamburger Menu Styling
    ========================================================================== */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
}

.hamburger-menu .line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: 0.3s ease;
}

/* ==========================================================================
    Mobile-Specific Styles
    ========================================================================== */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }

    .header-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .site-logo img {
        max-height: 35px;
    }

    .site-navigation {
        display: flex;
        align-items: center;
        margin-left: auto;
        width: auto;
        margin-top: 0;
    }

    .menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        overflow: hidden;
        z-index: 999;
        height: 0; /* Changed height to 0 initially */
        transition: height 0.3s ease-in-out; /* Added transition */
    }

    .menu-wrapper.active {
        display: block;
        padding: 15px;
        height: auto !important; /* Use !important to ensure override */
    }

    .hamburger-menu {
        display: flex;
        align-self: center;
        z-index: 1001;
        margin-left: auto;
    }

    .hamburger-menu.active .line:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger-menu.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .line:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
}
/* ==========================================================================
    Hero Section Redesign (Cover Background, Adjusted Layout)
    ========================================================================== */
.hero-section-redesign {
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Prevent scrolling within the hero section */
    padding: 0;
    background-image: url('./assets/img/nurse.jpg');
    background-size: cover; /* Ensure background covers the viewport */
    background-position: center -0%;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    align-items: center; /* Horizontally center content by default */
}

.hero-section-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    position: relative;
    text-align: center; /* Center text by default */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally by default */
}

.hero-text {
    padding-right: 0;
    max-width: 80%;
    margin-bottom: 20px; /* Adjust spacing */
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center; /* Center buttons by default */
    margin-bottom: 30px; /* Adjust spacing */
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center by default */
    color: #fff;
    cursor: pointer;
    margin-top: 40px; /* Increased margin for more space */
}

.scroll-down-indicator .desktop-text {
    font-size: 1.1rem; /* Increased text size */
    margin-bottom: 8px; /* Increased margin */
}

.scroll-down-indicator .mobile-text {
    display: none;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.scroll-down-indicator .arrow {
    width: 30px; /* Increased width */
    height: 45px; /* Increased height */
    border: 3px solid #fff; /* Increased border width */
    border-radius: 15px; /* Increased border radius */
    display: flex;
    justify-content: center;
}

.scroll-down-indicator .arrow span {
    width: 8px; /* Increased width */
    height: 8px; /* Increased height */
    background-color: #fff;
    border-radius: 50%;
    animation: scroll-down-arrow 1.5s infinite;
}

@keyframes scroll-down-arrow {
    0% {
        opacity: 0;
        transform: translateY(-8px); /* Increased translateY */
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(8px); /* Increased translateY */
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section-redesign {
        height: 100vh; /* Full viewport height */
        overflow: hidden; /* Prevent scrolling within hero */
        padding: 20px; /* Add some padding around content on mobile */
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Align content to the top on mobile */
        align-items: center;
    }

    .hero-content-wrapper {
        align-items: center;
        margin-top: 60px; /* Push content down slightly on mobile */
    }

    .hero-text {
        margin-bottom: 10px; /* Adjust spacing */
        max-width: 90%;
    }

    .hero-title {
        font-size: 2.2rem; /* Slightly smaller title on mobile */
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1rem; /* Slightly smaller subtitle on mobile */
        margin-bottom: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 70px; /* Increased margin to push indicator down */
    }

    .button {
        width: 100%;
    }

    .scroll-down-indicator {
        align-items: center; /* Center horizontally on mobile */
        margin-top: 0; /* Reset top margin */
        position: absolute; /* Position at the bottom */
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .scroll-down-indicator .desktop-text {
        display: none;
    }

    .scroll-down-indicator .mobile-text {
        display: block;
        font-size: 1.1rem; /* Increased size for mobile */
        margin-bottom: 8px; /* Increased margin */
    }

    .scroll-down-indicator .arrow {
        display: none;
    }

    .scroll-down-indicator::before {
        content: '↓';
        font-size: 3rem; /* Increased size for mobile */
        animation: swipe-down 1.5s infinite;
    }

    @keyframes swipe-down {
        0% {
            opacity: 0;
            transform: translateY(-15px); /* Increased translateY */
        }
        50% {
            opacity: 1;
            transform: translateY(0);
        }
        100% {
            opacity: 0;
            transform: translateY(15px); /* Increased translateY */
        }
    }
}

/* Desktop Specific Adjustments */
@media (min-width: 769px) {
    .hero-section-redesign {
        align-items: flex-start; /* Left align on desktop */
        justify-content: center; /* Maintain vertical center */
    }

    .hero-content-wrapper {
        align-items: flex-start !important;
        text-align: left !important; /* Left align text */
    }

    .hero-text {
        text-align: left !important;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px; /* Adjust spacing */
        max-width: 700px;
    }

    .hero-title {
        font-size: 3.6rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-actions {
        justify-content: flex-start;
        margin-bottom: 30px; /* Adjust spacing */
    }

    .scroll-down-indicator {
        align-items: center; /* Center horizontally on desktop */
        margin-top: 80px; /* Increased margin below buttons */
        margin-left: 0; /* Reset left margin for centering */
    }
}

/* ==========================================================================
   Three Easy Steps Section - Updated for Center Alignment
   ========================================================================== */
.steps-section {
    padding: 25px 0;
    background-color: #fff;
    text-align: center;
}

.steps-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.steps-section .intro-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.three-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center; /* Center all content */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items */
    justify-content: center; /* Center content vertically */
    transition: transform 0.3s ease-in-out;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-card .card-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
    height: 50px; /* Consistent icon height */
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
}


.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-card p {
    color: #777;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   Mobile Styles - Adjusted for Better Centering
   ========================================================================== */
@media (max-width: 768px) {
    .steps-section {
        padding: 60px 20px;
        text-align: center; /* Keep content centered */
    }

    .steps-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .steps-section .intro-text {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .three-steps-grid {
        grid-template-columns: 1fr; /* Stack steps */
        gap: 20px;
    }

    .step-card {
        padding: 25px;
    }

    .step-card .card-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .step-card h3 {
        font-size: 1.3rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
    Community Section
    ========================================================================== */
    
    .collaboration-redesign-v2 {
        padding: 60px 20px;
        background-color: #f8f9fa;
        text-align: center;
    }

    .collaboration-container-v2 {
        max-width: 1200px;
        margin: 0 auto;
    }

    .collaboration-title-v2 {
        color: #212529;
        margin-bottom: 40px;
        font-size: 2.4em;
        font-weight: 700;
    }

    .collaboration-intro-v2 {
        color: #495057;
        line-height: 1.7;
        margin-bottom: 50px;
        font-size: 1.15em;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .collaboration-grid-v2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .collaboration-card-v2 {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .card-image-v2 {
        display: block;
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        max-height: 200px; /* Limit image height */
        object-fit: cover; /* Ensure image covers the area without distortion */
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .card-content-v2 {
        padding: 25px;
        text-align: left;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .card-title-v2 {
        color: #343a40;
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 1.6em;
        font-weight: 600;
    }

    .card-text-v2 {
        color: #6c757d;
        line-height: 1.6;
        font-size: 1em;
        flex-grow: 1;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .collaboration-title-v2 {
            font-size: 2em;
            margin-bottom: 30px;
        }
        .collaboration-intro-v2 {
            font-size: 1.1em;
            margin-bottom: 40px;
        }
        .collaboration-grid-v2 {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .card-content-v2 {
            padding: 20px;
        }
        .card-title-v2 {
            font-size: 1.4em;
            margin-bottom: 8px;
        }
        .card-text-v2 {
            font-size: 0.95em;
        }
        .card-image-v2 {
            max-height: 150px;
        }
    }

/* ==========================================================================
    Testimonial Section
    ========================================================================== */

 .testimonials-section {
        padding: 100px 20px;
        background-color: #f9f9f9;
        text-align: center;
        overflow: hidden;
        position: relative;
    }

    .testimonials-carousel-container {
        max-width: 1200px; /* Wider container for 3 testimonials */
        margin: 0 auto;
    }

    .testimonials-heading {
        margin-bottom: 40px; /* Space between heading and carousel */
    }

    .testimonials-carousel {
        display: flex;
        transition: transform 0.8s ease-in-out;
        position: relative;
        min-height: 250px; /* Increased min-height */
    }

    .testimonial-slide {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        padding: 40px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.5s ease-in-out;
        width: 80%; /* Adjust width for spacing on desktop */
        margin: 0 10%; /* Create spacing between slides on desktop */
    }

    .testimonial-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        font-size: 1.1em;
        line-height: 1.7;
    }

    .testimonial-author {
        font-weight: bold;
        color: #333;
        font-size: 1em;
    }

    /* Desktop Styles (Show 3 testimonials) */
    @media (min-width: 769px) {
        .testimonials-carousel {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: center; /* Vertically align items in the grid */
            transform: translateX(0); /* Reset any potential carousel transformations */
        }

        .testimonial-slide {
            position: static; /* Allow normal flow in the grid */
            opacity: 1; /* All visible on desktop */
            visibility: visible;
            transform: translateY(0); /* Reset vertical centering */
            width: 100%; /* Take full width of the grid cell */
            margin: 0; /* No extra margins between slides */
            text-align: left; /* Align text to the left on desktop for better readability in a card format */
        }
    }

    /* Mobile Styles (Show 1 testimonial - default styles) */
    @media (max-width: 768px) {
        .testimonials-section {
            padding: 80px 15px;
        }

        .testimonials-carousel-container {
            max-width: 95%;
        }

        .testimonial-slide {
            width: 90%;
            margin: 0 5%;
            text-align: center; /* Center text on mobile */
        }

        .testimonial-text {
            font-size: 1em;
            line-height: 1.6;
        }
    }

/* ==========================================================================
    Science Section
    ========================================================================== */
.science-section {
    padding: 25px 0;
    background-color: #fff;
}

.science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.science-text {
    padding-right: 40px;
}

.science-text .section-label {
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.science-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.science-text .section-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.science-text .section-details {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.science-text .researchers-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.science-text .researchers-info p {
    color: #777;
    line-height: 1.6;
    font-size: 0.95rem;
}

.science-media {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.science-media .video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.science-media .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.science-media .video-caption {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .science-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .science-text {
        padding-right: 0;
        text-align: center;
    }

    .science-media {
        width: 100%;
    }

    .science-text .section-title {
        font-size: 2rem;
    }
}


/* ==========================================================================
    Report Preview Section - Improved Mobile and Desktop Styles (Button Below Image, Bigger Image, No Shadows)
    ========================================================================== */
.report-preview-section {
    padding: 60px 20px; /* Adjust padding for better mobile spacing */
    background-color: #f0f8ff; /* Light blue background */
    text-align: center; /* Center text within the section */
}

.report-preview-content {
    display: flex;
    flex-direction: column; /* Stack content by default */
    gap: 40px; /* Adjust gap for mobile */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.report-preview-info {
    max-width: 800px;
}

.report-preview-info .section-title {
    font-size: 2.5rem; /* Slightly larger desktop title */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px; /* Adjust margin */
    line-height: 1.2;
}

.report-preview-info .section-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px; /* Adjust margin */
    font-size: 1.1rem;
}

.report-preview-info .report-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Adjust gap for better spacing */
    margin-bottom: 40px; /* Adjust margin */
}

.report-preview-info .report-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px; /* Slightly wider for better text flow */
}

.report-preview-info .report-features .feature-item i {
    font-size: 2rem; /* Slightly larger icons */
    color: #007bff;
    margin-bottom: 15px;
}

.report-preview-info .report-features .feature-item h3 {
    font-size: 1.3rem; /* Slightly larger feature titles */
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.report-preview-info .report-features .feature-item p {
    color: #777;
    line-height: 1.5;
    font-size: 0.95rem;
}

.report-preview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px; /* Increased visual width on desktop */
    width: 100%; /* Ensure it's responsive */
    margin-bottom: 30px; /* Add margin below image for the button */
}

.report-preview-visual img {
    max-width: 100%;
    border-radius: 8px;
}

.report-preview-visual .report-details {
    /* Removed desktop-specific styling */
}

.report-preview-content > .button { /* Style the button directly within the content */
    padding: 14px 28px; /* Slightly larger button */
    font-size: 1.1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .report-preview-section {
        padding: 40px 20px; /* Further reduce padding on smaller screens */
    }

    .report-preview-content {
        gap: 30px; /* Adjust gap for smaller screens */
    }

    .report-preview-info .section-title {
        font-size: 2rem; /* Smaller mobile title */
        margin-bottom: 15px;
    }

    .report-preview-info .section-description {
        margin-bottom: 30px;
        font-size: 1rem;
    }

    .report-preview-info .report-features {
        gap: 20px; /* Adjust feature gap for mobile */
        margin-bottom: 30px;
    }

    .report-preview-info .report-features .feature-item {
        max-width: 100%; /* Allow full width on mobile */
    }

    .report-preview-info .report-features .feature-item i {
        font-size: 1.6rem; /* Slightly smaller mobile icons */
        margin-bottom: 10px;
    }

    .report-preview-info .report-features .feature-item h3 {
        font-size: 1.1rem; /* Smaller mobile feature titles */
        margin-bottom: 8px;
    }

    .report-preview-visual {
        max-width: 100%; /* Full width on mobile */
        margin-bottom: 20px; /* Add margin below image for the button */
    }

    .report-preview-content > .button {
        width: 100%; /* Full width button on mobile */
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Desktop Styles (Button below image, smaller bigger image, no shadows) */
@media (min-width: 769px) {
    .report-preview-content {
        flex-direction: column; /* Stack info, image, button */
        align-items: center; /* Center everything */
        gap: 60px; /* Adjust vertical spacing */
    }

    .report-preview-info {
        text-align: center; /* Center text on desktop */
        padding-right: 0; /* Remove right padding */
    }

    .report-preview-info .section-title,
    .report-preview-info .section-description {
        text-align: center; /* Ensure center alignment */
    }

    .report-preview-info .report-features {
        justify-content: center; /* Center features on desktop */
    }

    .report-preview-visual {
        max-width: 50%; /* Reduced image size on desktop */
        margin-bottom: 40px; /* More space for the button */
    }

    .report-preview-visual img {
        box-shadow: none; /* Remove image shadow */
    }

    .report-preview-content > .button {
        margin-top: 0; /* Reset top margin */
        box-shadow: none; /* Remove button shadow */
    }
}
/* ==========================================================================
    Elevated Assessment Process Section
    ========================================================================== */
    
.sample-report-preview {
        width: 150px; /* Default width for larger screens */
        height: auto;
        border: 1px solid #ccc;
        margin-bottom: 15px;
        padding-top: 5px;
        border-radius: 5px;
    }

    /* Make the image fill the container width on smaller screens (max-width: 768px is a common mobile breakpoint) */
    @media (max-width: 768px) {
        .sample-report-preview {
            width: 100%;
        }
    }
    
.assessment-process-section.elevated {
    padding: 100px 0;
    background-color: #f8f9fa; /* Light gray background */
    text-align: center;
}

.assessment-process-section.elevated .section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.assessment-process-section.elevated .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.assessment-process-section.elevated .section-subtitle {
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.process-steps-grid .step-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.process-steps-grid .step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.process-steps-grid .step-item .step-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.process-steps-grid .step-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.process-steps-grid .step-item p {
    color: #777;
    line-height: 1.7;
    font-size: 1rem;
}

.report-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.report-cta-grid > div {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.report-cta-grid h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.report-cta-grid .price {
    font-size: 3rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 25px;
}

.report-cta-grid .report-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.report-cta-grid .report-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.report-cta-grid .report-benefits li i {
    color: #28a745;
    font-size: 1.2rem;
}

.report-cta-grid .button.outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.report-cta-grid .button.outline:hover {
    background-color: #e7f3ff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .assessment-process-section.elevated {
        padding: 80px 20px;
        text-align: left;
    }

    .assessment-process-section.elevated .section-title {
        font-size: 2.2rem;
    }

    .assessment-process-section.elevated .section-subtitle {
        font-size: 1.1rem;
    }

    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .report-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .report-cta-grid > div {
        text-align: center;
    }
}

/* ==========================================================================
    Elevated & Enhanced FAQ Section (Visually Engaging)
    ========================================================================== */
.faq-section.elevated {
    padding: 100px 0;
    background-color: #e9ecef; /* Light gray background */
}

.faq-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-section.elevated .section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.faq-section.elevated .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 20px;
}

.faq-section.elevated .section-subtitle {
    color: #6c757d;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force exactly two columns */
    gap: 40px;
}

/* Media query for smaller screens (adjust 768px as needed) */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr; /* Switch to one column */
    }
}

/* Target the last three FAQ items */
.faq-item:nth-last-child(-n+3) {
    grid-column: 1 / -1; /* Span from the first to the last grid line */
}


.faq-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05); /* More pronounced shadow */
    overflow: hidden;
    border: 1px solid #dee2e6; /* Light gray border */
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 25px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529; /* Darker text */
    background-color: #f8f9fa; /* Light background */
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question i {
    font-size: 1.5rem;
    color: #6c757d;
    transition: transform 0.3s ease-in-out;
}

.faq-question.open i {
    transform: rotate(180deg);
    color: #007bff; /* Highlighted icon */
}

.faq-answer {
    padding: 30px 35px;
    color: #495057;
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid #dee2e6;
    display: none;
}

.faq-answer.open {
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .faq-section.elevated {
        padding: 80px 20px;
    }

    .faq-section.elevated .section-title {
        font-size: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 20px 30px;
    }

    .faq-answer {
        padding: 20px 30px;
    }
}


/* ==========================================================================
    Card Style CTA Banner (Forced White BG - Specific Selector)
    ========================================================================== */
body .cta-banner.card-style { /* More specific selector */
    padding: 60px 20px;
    background-color: #fff !important; /* Force white background */
    border-radius: 12px; /* Soft rounded corners for the card effect */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow to make it stand out */
    text-align: center;
    margin: 30px auto; /* Add some margin to separate it from surrounding content */
    max-width: 900px; /* Optional: Limit the width of the card */
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-subheadline {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.cta-action {
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #ff9800; /* Keeping their button color for now */
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 152, 0, 0.2);
}

.cta-button:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.25);
}

/* Mobile Styles */
@media (max-width: 768px) {
    body .cta-banner.card-style { /* Apply mobile styles to the specific selector */
        margin: 20px; /* Adjust margin on smaller screens */
    }

    .cta-headline {
        font-size: 2rem;
    }

    .cta-subheadline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 1rem;
    }
}
/* ==========================================================================
    About Us Section (Flex Layout)
    ========================================================================== */
.about-us {
    padding: 25px 0;
    background-color: #fff;
}

.about-content-redesign {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-content-redesign {
        flex-direction: column;
        text-align: center;
        padding-left: 20px; /* Add some inner padding */
        padding-right: 20px;
    }

    .about-image {
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   Call to Action Section Redesign - Two Buttons, Blue & White, Adjusted Size
   ========================================================================== */
.cta-banner-elevated {
    background-color: #e9f0fa; /* Light blue background */
    color: #007bff; /* Primary blue text */
    padding: 100px 30px; /* Reduced vertical padding */
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin: 50px 20px;
    position: relative;
    overflow: hidden;
}

.cta-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.cta-text-container {
    margin-bottom: 0;
}

.cta-headline {
    font-size: 2.8rem; /* Slightly smaller headline */
    font-weight: 700;
    margin-bottom: 15px;
    color: #0056b3; /* Darker blue for emphasis */
}

.cta-subheadline {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 750px;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.cta-benefits li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007bff; /* Blue benefit text */
}

.cta-benefits li i {
    font-size: 1.2rem;
    color: #28a745; /* Green for checkmarks */
}

.cta-action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cta-sample-button {
    background-color: #fff; /* White sample button */
    color: #007bff;
    border: 2px solid #007bff;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    margin-bottom: 15px; /* Add some space above the PayPal button */
}

.cta-sample-button:hover {
    background-color: #e9f0fa;
    color: #0056b3;
    border-color: #0056b3;
}

.paypal-form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.paypal-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffc107; /* Keep PayPal yellow */
    color: #000;
    border: none;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 1.2rem; /* Match sample button size */
    padding: 15px 40px; /* Match sample button size */
    border-radius: 8px; /* Match sample button size */
}

.paypal-button i {
    font-size: 1.3rem;
}

.paypal-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .cta-banner-elevated {
        padding: 80px 20px;
        margin: 40px 10px;
        border-radius: 10px;
    }

    .cta-headline {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }

    .cta-subheadline {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .cta-benefits {
        margin-bottom: 25px;
        gap: 8px;
    }

    .cta-benefits li {
        font-size: 1rem;
    }

    .cta-sample-button,
    .paypal-button {
        font-size: 1.1rem;
        padding: 12px 35px;
        width: 100%;
    }

    .paypal-form {
        margin-top: 15px;
    }
}
/* ==========================================================================
    Footer Styles - Improved Layout and Social Icons
    ========================================================================== */
.site-footer {
    background-color: #333;
    color: #eee;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-links ul li a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.footer-social a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-copyright {
    margin-top: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer-links ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-social {
        font-size: 1.8rem;
    }
}
/* ==========================================================================
    Mobile Styles (Basic Responsiveness) - CONTINUED
    ========================================================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-navigation {
        width: 100%;
        margin-top: 15px;
        align-items: flex-start;
    }

    .main-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        border-radius: 6px;
        overflow: hidden;
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu li {
        margin: 0;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }

    .main-menu li:last-child {
        border-bottom: none;
    }

    .hamburger-menu {
        display: flex;
        margin-left: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-left: 20px; /* Add inner padding */
        padding-right: 20px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-image img {
        margin-top: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .value-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .value-item {
        padding: 20px;
    }

    .value-item .icon {
        text-align: center;
        margin-bottom: 10px;
    }

    .about-content-redesign {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .call-to-action-redesign {
        text-align: center;
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .site-footer {
        padding: 40px 20px; /* Add padding to the footer on mobile */
    }

    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-links li {
        margin: 10px 0;
    }
}