
    /* === CSS Variables for Easy Customization === */
    :root {
        --primary-color: #22c55e; /* Sabia Green */
        --dark-bg: #1e293b; /* Slate Dark */
        --text-light: #f8fafc; /* Very light gray */
        --text-muted: #94a3b8; /* Slate-400 for secondary text */
        
        /* === BACKGROUND IMAGE URL: Replace this with your actual image URL === */
        /* The placeholder is used here. */
        --hero-bg-image-url: url('/assets/images/hero-home-sabia-digital.jpg'); 
    }


    @keyframes scroll-bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }

    @keyframes scroll-wheel-animate {
        0% { opacity: 1; transform: translate(-50%, 0); }
        100% { opacity: 0; transform: translate(-50%, 15px); }
    }

    /* --- Hero Section (.hero-global) Styles --- */
    .hero-global {
        position: relative;
        min-height: 85vh; 
        display: flex;
        align-items: center; 
        justify-content: center; 
        text-align: center;
        overflow: hidden; 
        color: var(--text-light); 
        
        background-image: var(--hero-bg-image-url);
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat;
       
    }

    /* Dark Overlay: Opacity reduced to 0.65 to let the background show through */
    .hero-global::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        /* Reduced opacity from 0.85 to 0.65 to show the image better */
        background-color: rgba(14, 22, 36, 0.959); 
        z-index: 1; 
    }

    .page-hero-content {
        position: relative;
        z-index: 2; 
        padding: 4rem 1rem; 
    }

    .hero-global h1 {
        font-size: clamp(2.4rem, 5.1vw, 4.1rem); /* Bigger and bolder */
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 0 0 15px rgba(0,0,0,0.5); /* Subtle shadow for depth */
    }

    .hero-global p {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        color: var(--text-muted);
        margin-bottom: 3.5rem; /* Increased margin after paragraph */
        line-height: 1.6;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    /* --- Scroll Indicator (Now Green) --- */
    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2; 
        font-size: 0.875rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        opacity: 0.9;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .scroll-indicator span {
        color: var(--primary-color); /* Text is now green */
        font-weight: 600;
    }

    .mouse-icon {
        width: 25px;
        height: 40px;
        border: 2px solid var(--primary-color); /* Border is now green */
        border-radius: 15px;
        position: relative;
        animation: scroll-bounce 2s infinite; 
    }

    .mouse-wheel {
        width: 4px;
        height: 8px;
        background-color: var(--primary-color); /* Wheel is now green */
        border-radius: 2px;
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        animation: scroll-wheel-animate 1.2s ease-in-out infinite; 
    }

    /* Placeholder content below the hero to demonstrate scrolling */
    .content-section {
        min-height: 100vh;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--dark-bg);
        border-top: 5px solid var(--primary-color);
        padding: 2rem;
        text-align: center;
    }
