* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0A0E27;
            color: #FFFFFF;
            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;
            width: 100%;
            background: rgba(10, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FF006E;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #3A86FF;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #FFFFFF;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
            background: linear-gradient(180deg, #0A0E27 0%, #1A2151 100%);
            min-height: 100vh;
        }
        
        .cookie-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            background: rgba(10, 14, 39, 0.7);
            border-radius: 15px;
            border: 1px solid rgba(255, 0, 110, 0.2);
        }
        
        h1 {
            font-size: 36px;
            margin-bottom: 30px;
            color: #FF006E;
            text-align: center;
            text-transform: uppercase;
        }
        
        h2 {
            font-size: 24px;
            margin: 30px 0 15px;
            color: #3A86FF;
        }
        
        h3 {
            font-size: 20px;
            margin: 25px 0 10px;
            color: #06FFB4;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background: rgba(255, 0, 110, 0.1);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(255, 0, 110, 0.2);
        }
        
        .cookie-type h3 {
            margin-top: 0;
        }
        
        .last-updated {
            text-align: center;
            margin-top: 40px;
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Footer */
        footer {
            background: #0A0E27;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 0, 110, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #FF006E;
            text-transform: uppercase;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #3A86FF;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #FFFFFF;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 22px;
            }
            
            h3 {
                font-size: 18px;
            }
        }

