* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #F7931E;
            --accent-color: #00A8E8;
            --dark-bg: #1A1A2E;
            --darker-bg: #0F0F1E;
            --text-light: #F5F5F5;
            --text-dim: #B8B8B8;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 0 0 10px var(--primary-color);
            letter-spacing: 1px;
            font-family: 'Courier New', monospace;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .page-header {
            padding: 60px 0;
            background-color: var(--darker-bg);
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
            z-index: 1;
        }
        
        .page-header h1 {
            font-size: 3rem;
            color: var(--primary-color);
            text-align: center;
            position: relative;
            z-index: 2;
            font-family: 'Courier New', monospace;
        }
        
        .content-section {
            margin-bottom: 40px;
        }
        
        .content-section h2 {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-family: 'Courier New', monospace;
        }
        
        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
        
        .content-section h3 {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin: 25px 0 15px;
            font-family: 'Courier New', monospace;
        }
        
        .content-section p {
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        .content-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-section li {
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .cookie-type {
            flex: 1;
            min-width: 250px;
            background-color: var(--darker-bg);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
        }
        
        .cookie-type h4 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-family: 'Courier New', monospace;
        }
        
        .cookie-type p {
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .cookie-examples {
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 5px;
            padding: 10px;
            margin-top: 10px;
        }
        
        .cookie-examples h5 {
            font-size: 1rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-family: 'Courier New', monospace;
        }
        
        .cookie-examples ul {
            margin-left: 15px;
            margin-bottom: 0;
        }
        
        .cookie-examples li {
            font-size: 0.9rem;
            color: var(--text-dim);
            margin-bottom: 5px;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 20px 0;
            background-color: var(--darker-bg);
            text-align: center;
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-logo h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-family: 'Courier New', monospace;
        }
        
        .footer-logo p {
            color: var(--text-dim);
        }
        
        .footer-links {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-family: 'Courier New', monospace;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .footer-contact {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-family: 'Courier New', monospace;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .content-section h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .content-section h2 {
                font-size: 1.5rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

