        @import url('https://fonts.googleapis.com/css2?family=Inika:wght@400;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #00072A;
            --secondary: #041C97;
            --accent: #FFA136;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --dark-gray: #333;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* ==================== HEADER ==================== */
        .header {
            background-color: var(--secondary);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        .burger-menu-btn {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            margin-right: 1.5rem;
            transition: transform 0.3s ease;
        }

        .burger-menu-btn:hover {
            transform: scale(1.1);
        }

        .header-title {
            color: var(--white);
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            flex-grow: 1;
            text-align: center;
        }

        .header-right {
            display: flex;
            align-items: center;
        }

        .account-btn {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .account-btn:hover {
            transform: scale(1.1);
        }

        /* ==================== MOBILE MENU ==================== */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-content {
            background-color: var(--white);
            width: 250px;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            padding: 2rem 1rem;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(0);
            }
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            margin-bottom: 2rem;
            color: var(--secondary);
        }

        .mobile-menu-list {
            list-style: none;
        }

        .mobile-menu-item {
            margin-bottom: 1.5rem;
        }

        .mobile-menu-link {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .mobile-menu-link:hover {
            color: var(--accent);
        }

        /* ==================== SECTIONS ==================== */
        section {
            width: 100%;
        }

        /* ==================== HERO CAROUSEL ==================== */
        .section-carousel {
            height: 866px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
            font-weight: 700;
        }

        .carousel-slide.has-text .slide-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
            z-index: 2;
        }

        .carousel-slide.has-text .slide-overlay span {
            color: var(--white);
            font-size: 7rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            font-family: 'Inika', serif;
        }

        /* Ensure carousel images always fill the available width/height */
        .section-carousel .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-controls {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--white);
        }

        /* ==================== TWO COLUMN SECTIONS ==================== */
        .section-two-cols {
            display: flex;
            min-height: 500px;
        }

        .section-col {
            flex: 0 0 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
        }

        .section-col-image {
            width: 100%;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            color: var(--white);
            font-size: 4rem;
            overflow: hidden;
            box-sizing: border-box;
            position: relative;
            aspect-ratio: 1 / 1;
        }

        .section-col-image img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .section-col-text {
            width: 100%;
        }

        .section-col-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .section-col-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .section-col-text-white {
            color: var(--white);
        }

        .section-col-text-white h2 {
            color: var(--white);
        }

        .section-col-text-white p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* ==================== WHITE SECTIONS ==================== */
        .section-white {
            background-color: var(--white);
        }

        .section-white.full-content {
            padding: 5rem 3rem;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
        }

        .section-white.full-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .section-white.full-content p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
        }

        /* ==================== SECONDARY COLOR SECTIONS ==================== */
        .section-secondary {
            background-color: var(--secondary);
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background-color: var(--secondary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 3rem;
        }

        .footer-column {
            color: var(--white);
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .footer-column p,
        .footer-column li {
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.5rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .footer-bar {
            background-color: var(--primary);
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-text {
            color: var(--white);
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-link {
            color: var(--white);
            font-size: 1.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-link:hover {
            color: var(--accent);
            transform: scale(1.2);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .section-carousel {
                height: 350px;
            }

            .section-carousel .carousel-slide {
                font-size: 2rem;
            }

            .section-two-cols {
                flex-direction: column;
                min-height: auto;
            }

            .section-col {
                min-height: 300px;
                padding: 2rem;
            }

            .section-col-text h2 {
                font-size: 1.8rem;
            }

            .section-col-text p {
                font-size: 1rem;
            }

            .section-col-image {
                font-size: 2rem;
            }

            .header-title {
                font-size: 1.3rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bar {
                flex-direction: column;
                text-align: center;
            }

            .header {
                padding: 0.75rem 1rem;
            }

            .burger-menu-btn,
            .account-btn {
                font-size: 1.2rem;
            }

            .mobile-menu-content {
                width: 200px;
                padding: 1.5rem 1rem;
            }

            .section-white.full-content {
                padding: 3rem 1.5rem;
            }

            .section-white.full-content h2 {
                font-size: 1.8rem;
            }

            .section-white.full-content p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .header-title {
                font-size: 1rem;
            }

            .section-carousel {
                height: 250px;
            }

            .section-carousel .carousel-slide {
                font-size: 1.5rem;
            }

            .section-col {
                min-height: 250px;
                padding: 1.5rem;
            }

            .section-col-text h2 {
                font-size: 1.5rem;
            }

            .section-col-text p {
                font-size: 0.9rem;
            }

            .footer-content {
                padding: 2rem 1rem;
                gap: 1rem;
            }

            .footer-bar {
                padding: 1.5rem 1rem;
            }
        }
    