:root {
            --color-bg: #1a1a1a;
            --color-text: #e0e0e0;
            --color-accent: #00FFFF;
            --color-secondary-accent: #FF00FF;
            --color-border: #333;
            --color-form-bg: #222;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--color-accent);
            text-transform: uppercase;
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--color-text);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--color-secondary-accent);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
            cursor: pointer;
            z-index: 100;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background-color: var(--color-text);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background: var(--color-bg);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .burger-menu {
                display: flex;
            }
            
            .burger-menu.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger-menu.active .line2 {
                opacity: 0;
            }
            .burger-menu.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }
        
        main {
            padding-top: 6rem;
            min-height: calc(100vh - 12rem);
        }

        .policy-section {
            padding: 4rem 0;
        }

        h1, h2 {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            text-transform: uppercase;
            color: var(--color-text);
            margin-bottom: 1rem;
        }

        h1 { font-size: 3rem; color: var(--color-secondary-accent); }
        h2 { font-size: 2rem; color: var(--color-accent); }

        .policy-section p, .policy-section li {
            margin-bottom: 1rem;
        }
        
        .policy-section ul {
            margin-left: 2rem;
        }
        
        .policy-section li {
            list-style-type: disc;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--color-form-bg);
            border-top: 1px solid var(--color-border);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            z-index: 999;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--color-accent);
            text-decoration: none;
        }

        .cookie-banner .btn {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: var(--color-accent);
            color: var(--color-bg);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .cookie-banner .btn:hover {
            background-color: var(--color-secondary-accent);
            color: var(--color-text);
        }

        footer {
            background-color: var(--color-form-bg);
            color: var(--color-text);
            padding: 3rem 0 1rem;
            border-top: 1px solid var(--color-border);
        }

        footer .container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--color-text);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-accent);
        }

        .footer-contact {
            text-align: center;
            font-size: 0.9rem;
            color: #ccc;
        }
        
        .footer-contact p {
            margin: 0.5rem 0;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            font-size: 0.8rem;
            color: #888;
            border-top: 1px solid var(--color-border);
        }

