* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #9d4edd;
            --secondary-color: #c77dff;
            --accent-color: #e0aaff;
            --text-color: #240046;
            --light-color: #ffffff;
            --dark-color: #10002b;
            --neon-green: #39ff14;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--light-color);
            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(16, 0, 43, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--neon-green);
            box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-green);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--neon-green);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--neon-green);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-green);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Main Content */
        main {
            padding: 120px 0 50px;
            min-height: 100vh;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--neon-green);
        }
        
        .cookie-content {
            background-color: rgba(36, 0, 70, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(157, 78, 221, 0.3);
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section:last-child {
            margin-bottom: 0;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: var(--secondary-color);
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            color: var(--light-color);
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: var(--light-color);
        }
        
        .cookie-section li {
            margin-bottom: 10px;
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            flex: 1;
            min-width: 250px;
            background-color: rgba(16, 0, 43, 0.7);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(157, 78, 221, 0.3);
        }
        
        .cookie-type h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--neon-green);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            padding: 50px 0 20px;
            border-top: 2px solid var(--neon-green);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-green);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--light-color);
        }
        
        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(157, 78, 221, 0.3);
            text-align: center;
            color: var(--accent-color);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(16, 0, 43, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .cookie-section h2 {
                font-size: 1.5rem;
            }
            
            .cookie-section h3 {
                font-size: 1.2rem;
            }
            
            .cookie-type {
                min-width: 100%;
            }
        }

