* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #0a192f;
            --secondary-color: #64ffda;
            --accent-color: #172a45;
            --text-color: #8892b0;
            --light-text: #ccd6f6;
            --white: #ffffff;
            --section-padding: 80px 20px;
        }
        
        body {
            background-color: var(--primary-color);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary-color);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Cookie Policy Section */
        .cookie {
            padding: 120px 20px 80px;
            background-color: var(--primary-color);
        }
        
        .cookie-content {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--accent-color);
            padding: 40px;
            border-radius: 8px;
        }
        
        .cookie h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--white);
            text-align: center;
        }
        
        .cookie h2 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: var(--white);
        }
        
        .cookie h3 {
            font-size: 1.3rem;
            margin: 20px 0 10px;
            color: var(--white);
        }
        
        .cookie p {
            margin-bottom: 15px;
            color: var(--text-color);
        }
        
        .cookie ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: var(--text-color);
        }
        
        .cookie li {
            margin-bottom: 10px;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .cookie-type {
            background-color: var(--primary-color);
            padding: 20px;
            border-radius: 8px;
        }
        
        .cookie-type h4 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            padding: 50px 20px 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: var(--text-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--accent-color);
            color: var(--text-color);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .cookie h1 {
                font-size: 2rem;
            }
            
            .cookie h2 {
                font-size: 1.5rem;
            }
        }

