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

        /* Ensure all content is below fixed header on ALL pages */
        body {
            padding-top: 80px !important;
        }

        /* Header - Override any conflicting styles */
        header {
            position: fixed !important;
            top: 0 !important;
            width: 100% !important;
            background: rgba(10, 10, 15, 0.95) !important;
            z-index: 1000 !important;
            padding: 1rem 0 !important;
            border-bottom: 1px solid rgba(120, 119, 198, 0.2) !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
            transform: translate3d(0, 0, 0) !important;
            will-change: background !important;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Mobile menu toggle - hidden by default */
        .mobile-menu-toggle {
            display: none;
        }

        .mobile-menu-btn {
            display: none;
        }

        .mobile-menu {
            display: none;
        }


        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-left: -20px;
        }

        .logo-image {
            height: 65px;
            width: auto;
            max-width: 300px;
            transition: opacity 0.3s ease;
            display: block;
        }

        .logo-image:hover {
            opacity: 0.9;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #7877c6, #ff77c6);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: #ffffff;
            color: #0a0a0f;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s ease;
        }

        .cta-button:hover {
            background: #f0f0f0;
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
        }

        .mobile-menu {
            display: none;
        }

        @media (max-width: 768px) {
            body {
                padding-top: 100px !important;
            }

            .container {
                padding: 0 15px;
            }

            header {
                padding: 1rem 0;
            }

            nav {
                flex-wrap: wrap;
                position: relative;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                color: white;
                font-size: 1.5rem;
                cursor: pointer;
                padding: 0.5rem;
                order: 2;
            }

            .logo {
                order: 1;
                margin-left: 0;
            }

            .logo-image {
                height: 50px;
                max-width: 300px;
                display: block;
            }

            .cta-button {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                padding: 0.8rem 1.5rem;
                text-align: center;
            }

            /* Pure CSS Mobile Menu - FIXED POSITION TO APPEAR ABOVE EVERYTHING */
            .mobile-menu {
                display: block !important;
                position: fixed !important;
                top: 80px !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                background: rgba(10, 10, 15, 0.98) !important;
                backdrop-filter: blur(10px) !important;
                border: 1px solid rgba(255, 255, 255, 0.1) !important;
                border-radius: 0 !important;
                margin: 0 !important;
                padding: 0 !important;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
                transform: translateY(-100%) !important;
                opacity: 0 !important;
                visibility: hidden !important;
                transition: all 0.3s ease !important;
                z-index: 99999 !important;
            }

            .mobile-menu a {
                display: block;
                color: white;
                text-decoration: none;
                padding: 1rem 1.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                font-size: 1rem;
                transition: background 0.3s ease;
            }

            .mobile-menu a:hover {
                background: rgba(255, 255, 255, 0.1);
            }

            .mobile-menu a:last-child {
                border-bottom: none;
                border-radius: 0 0 8px 8px;
            }

            .mobile-menu a:first-child {
                border-radius: 8px 8px 0 0;
            }

            /* Show menu when checkbox is checked */
            .mobile-menu-toggle:checked ~ .mobile-menu {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) !important;
            }

            /* Style the burger icon when menu is open */
            .mobile-menu-toggle:checked + .mobile-menu-btn {
                color: #7877c6;
            }
        }