@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: #1a1a2e;
            color: #f7f7f7;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Orbitron', monospace;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
            text-align: center;
            margin: 40px 0;
        }
        
        h2 {
            font-size: 2rem;
            color: #ffe66d;
            position: relative;
            display: inline-block;
            margin: 30px 0 20px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
        }
        
        h3 {
            font-size: 1.5rem;
            color: #4ecdc4;
            margin-bottom: 15px;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .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.95);
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffe66d;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: #ff6b6b;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #f7f7f7;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #4ecdc4;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff6b6b;
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #f7f7f7;
            margin: 5px 0;
            transition: 0.3s;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 80px;
        }
        
        .cookie-content {
            max-width: 900px;
            margin: 0 auto;
            background-color: #0f3460;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-section {
            margin-bottom: 40px;
        }
        
        .cookie-section:last-child {
            margin-bottom: 0;
        }
        
        .cookie-section ul {
            list-style-type: none;
            margin-left: 20px;
        }
        
        .cookie-section ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 15px;
        }
        
        .cookie-section ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #4ecdc4;
            font-size: 1.5rem;
            line-height: 1;
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .cookie-type {
            flex: 1;
            min-width: 250px;
            background-color: rgba(15, 52, 96, 0.5);
            border-radius: 10px;
            padding: 20px;
            border-left: 3px solid #4ecdc4;
        }
        
        .cookie-type h4 {
            color: #ffe66d;
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: #0f3460;
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: #ffe66d;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #f7f7f7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #4ecdc4;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: #4ecdc4;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                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.3s ease-out;
                z-index: 999;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .cookie-content {
                padding: 30px 20px;
            }
        }

