        /* Hero Styles */
        .hero {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .hero-video-section {
            width: 100%;
            aspect-ratio: 16/9;
            position: relative;
            overflow: hidden;
        }

        .hero-content-section {
            background: #1B444B;
            padding: 4rem 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            gap: 4rem;
        }

        .media-card-inner {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            display: grid;
            place-items: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: inherit;
            z-index: 1;
            background: linear-gradient(135deg, rgba(27, 68, 75, 0.3) 0%, rgba(27, 68, 75, 0.3) 100%);
            transition: opacity 0.3s ease;
        }

        .hero-video[data-loading="true"] {
            opacity: 0.95;
        }

        /* Inline controls for hero video */
        .mute-toggle {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            z-index: 3;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.35);
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(8px);
            cursor: pointer;
        }

        .mute-toggle::before {
            content: '';
            position: absolute;
            inset: 0;
            margin: auto;
            width: 16px;
            height: 14px;
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white" stroke="white" stroke-width="2"><polygon points="11,5 6,9 2,9 2,15 6,15 11,19 11,5"/></svg>') center / contain no-repeat;
            background: #ffffff;
        }

        .mute-toggle.is-unmuted::before {
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><polygon points="11,5 6,9 2,9 2,15 6,15 11,19 11,5"/><path d="M19.07,4.93A10,10,0,0,1,19.07,19.07"/><path d="M15.54,8.46A5,5,0,0,1,15.54,15.54"/></svg>') center / contain no-repeat;
        }

        .fullscreen-button {
            position: absolute;
            right: 0.75rem;
            bottom: 0.75rem;
            z-index: 3;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.35);
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(8px);
            cursor: pointer;
        }

        .fullscreen-button::before {
            content: '';
            position: absolute;
            inset: 0;
            margin: auto;
            width: 18px;
            height: 18px;
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M9 3H3v6"/><path d="M15 3h6v6"/><path d="M9 21H3v-6"/><path d="M15 21h6v-6"/></svg>') center / contain no-repeat;
            background: #ffffff;
        }

        .play-button {
            width: 3.6rem;
            height: 3.6rem;
            border: 0.22rem solid var(--green600);
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease;
            position: relative;
            z-index: 2;
        }

        .play-button:hover {
            transform: scale(1.1);
            border-color: var(--green700);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 1rem solid var(--green600);
            border-top: 0.6rem solid transparent;
            border-bottom: 0.6rem solid transparent;
            margin-left: 0.2rem;
        }

        .pause-button {
            width: 3.6rem;
            height: 3.6rem;
            border: 0.22rem solid var(--green600);
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease;
            position: relative;
            z-index: 2;
            margin-left: 0.8rem;
        }

        .pause-button::after {
            content: '';
            display: block;
            width: 1rem;
            height: 1rem;
            box-sizing: content-box;
            border-left: 0.35rem solid var(--green600);
            border-right: 0.35rem solid var(--green600);
        }

        .audio-overlay {
            position: absolute;
            top: 1rem;
            left: 1rem;
            right: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            z-index: 3;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .media-card-inner:hover .audio-overlay {
            opacity: 1;
        }

        .audio-overlay-text {
            background: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .audio-indicator {
            background: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            padding: 0.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
        }

        .audio-muted-icon {
            color: #ff6b6b;
        }

        .audio-unmuted-icon {
            color: #51cf66;
        }

        .hero-eleve-text {
            font-family: var(--font-heading);
            font-weight: 300;
            letter-spacing: 0.02em;
            line-height: 0.9;
            font-size: clamp(4rem, 10vw, 8rem);
            color: #ffffff;
            text-align: center;
            flex: 0 0 40%;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1rem;
            color: #ffffff;
            flex: 0 0 60%;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2vw, 1.8rem);
            font-style: italic;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .hero-meta {
            font-size: clamp(0.9rem, 1.2vw, 1.1rem);
            font-weight: 400;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 0.8rem;
        }

        .hero-description {
            font-size: clamp(0.9rem, 1.1vw, 1rem);
            font-style: italic;
            font-weight: 400;
            color: #ffffff;
            line-height: 1.4;
            margin-bottom: 1.5rem;
        }

        .hero-button {
            margin-top: 0;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            background: #2F6A56;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0;
            line-height: 1.25;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(0,0,0,0.20);
            align-self: flex-start;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .hero-button:hover {
            background: #3a7a66;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--textPrimary);
            font-size: 1rem;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 55% 45%;
            }
            
            :root {
                --radius-lg: 1rem;
            }
            
            .nav-links {
                gap: 0.8rem;
            }
            
            .nav-link {
                font-size: 0.9rem;
            }
            
            .brand {
                width: 280px;
            }
        }

        @media (max-width: 992px) {
            .header {
                height: 10vh;
            }
            
            .hero-video-section {
                aspect-ratio: 16/9;
                max-height: 50vh;
            }
            
            .hero-content-section {
                padding: 3rem 2rem;
            }
            
            .hero-content-container {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
            
            .hero-eleve-text {
                font-size: clamp(3rem, 8vw, 5rem);
                flex: none;
            }
            
            .hero-content {
                flex: none;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .nav-links.mobile-visible {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 31, 27, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: var(--shadow-soft);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .mobile-menu-toggle {
                display: block;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                color: var(--textPrimary);
                padding: 0.5rem 1rem;
                border-radius: var(--radius-sm);
                font-size: 0.9rem;
            }
            
            .hero-video-section {
                aspect-ratio: 16/9;
                max-height: 40vh;
            }
            
            .hero-content-section {
                padding: 2rem 1rem;
            }
            
            .hero-content-container {
                gap: 1.5rem;
            }
            
            .hero-button {
                padding: 0.85rem 1.1rem;
                font-size: 1rem;
                align-self: center;
                margin: 0 auto;
            }
            
            .brand {
                width: auto;
                flex: 1;
            }
            
            .brand-title {
                font-size: 0.95rem;
            }
            
            .brand-subtitle {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                width: 96vw;
                padding: 0.8rem 0;
            }
            
            .hero-video-section {
                aspect-ratio: 16/9;
                max-height: 35vh;
            }
            
            .hero-content-section {
                padding: 1.5rem 0.5rem;
            }
            
            .hero-content-container {
                gap: 1rem;
            }
            
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .hero-button {
                align-self: center;
                margin: 0 auto;
            }
            
            .hero-eleve-text {
                font-size: clamp(2rem, 6vw, 3rem);
            }
            
            .brand-title {
                font-size: 0.9rem;
            }
            
            .brand-subtitle {
                font-size: 0.6rem;
            }
            
            .logo {
                height: 2.2rem;
            }
        }
