/* Same CSS as privacy.html */
        :root {
            --neon-pink: #ff2a6d;
            --cyber-teal: #05d9e8;
            --dark-purple: #1a1a2e;
            --matrix-green: #00ff9d;
            --electric-blue: #005678;
            --text-glow: 0 0 10px var(--neon-pink), 0 0 20px var(--cyber-teal);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-purple);
            color: #d1f7ff;
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)),
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-pink);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: var(--matrix-green);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: var(--text-glow);
            letter-spacing: 2px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: var(--cyber-teal);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        nav ul li a:hover {
            background-color: var(--neon-pink);
            color: var(--dark-purple);
            text-shadow: none;
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--matrix-green);
            margin: 5px;
            transition: all 0.3s ease;
        }

        main {
            margin-top: 80px;
            padding: 2rem;
        }

        section {
            padding: 4rem 0;
            border-bottom: 1px solid rgba(5, 217, 232, 0.2);
        }

        h1, h2, h3 {
            color: var(--matrix-green);
            margin-bottom: 1.5rem;
            text-shadow: var(--text-glow);
        }

        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 1.8rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background-color: var(--neon-pink);
            color: var(--dark-purple);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: 1rem;
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .btn:hover {
            background-color: var(--cyber-teal);
            box-shadow: 0 0 20px var(--cyber-teal);
            transform: translateY(-3px);
        }

        .content-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 8px;
            border: 1px solid var(--electric-blue);
        }

        .disclaimer {
            font-size: 0.8rem;
            color: var(--cyber-teal);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--electric-blue);
            margin-top: 3rem;
        }

        footer {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--neon-pink);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--matrix-green);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: var(--cyber-teal);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }

        .contact-info {
            margin-top: 1rem;
        }

        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .contact-info i {
            margin-right: 0.5rem;
            color: var(--matrix-green);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--electric-blue);
            font-size: 0.9rem;
            color: var(--cyber-teal);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--electric-blue);
            color: white;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin-bottom: 0;
            flex: 1;
            min-width: 250px;
            margin-right: 1rem;
        }

        .cookie-banner button {
            background-color: var(--neon-pink);
            color: var(--dark-purple);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cookie-banner button:hover {
            background-color: var(--matrix-green);
            box-shadow: 0 0 15px var(--matrix-green);
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                z-index: 999;
                border-bottom: 1px solid var(--neon-pink);
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
            }

            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active .line2 {
                opacity: 0;
            }

            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }
        }

