* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rajdhani', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: #0a0e27;
            color: #e0e0e0;
            line-height: 1.6;
        }
        
        .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, 14, 39, 0.9);
            backdrop-filter: blur(10px);
            color: #e0e0e0;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(255, 0, 110, 0.2);
            border-bottom: 1px solid rgba(131, 56, 236, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #e0e0e0;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: #06ffa5;
        }
        
        nav ul li a:hover::before {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger-menu span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #e0e0e0;
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
            position: relative;
        }
        
        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .page-header {
            background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(255, 0, 110, 0.2));
            color: #e0e0e0;
            padding: 50px 0;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            color: #a0a0a0;
        }
        
        .content-section {
            background-color: #0f1632;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(131, 56, 236, 0.2);
            position: relative;
            z-index: 2;
        }
        
        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.05));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .content-section:hover::before {
            opacity: 1;
        }
        
        .content-section h2 {
            font-size: 32px;
            color: #e0e0e0;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }
        
        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
        }
        
        .content-section h3 {
            font-size: 24px;
            color: #06ffa5;
            margin: 25px 0 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            position: relative;
        }
        
        .content-section p {
            margin-bottom: 15px;
            font-size: 16px;
            color: #a0a0a0;
            position: relative;
            z-index: 2;
        }
        
        .content-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .content-section ul li {
            margin-bottom: 10px;
            font-size: 16px;
            color: #a0a0a0;
            position: relative;
        }
        
        .content-section ul li::before {
            content: '▸';
            position: absolute;
            left: -20px;
            color: #8338ec;
        }
        
        .content-section a {
            color: #06ffa5;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
            z-index: 2;
        }
        
        .content-section a:hover {
            color: #8338ec;
            text-decoration: underline;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
            position: relative;
            z-index: 2;
        }
        
        .cookie-type {
            background-color: #0a0e27;
            border-radius: 10px;
            padding: 20px;
            border-left: 4px solid #8338ec;
            transition: all 0.3s;
        }
        
        .cookie-type:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(131, 56, 236, 0.2);
        }
        
        .cookie-type h4 {
            font-size: 18px;
            color: #e0e0e0;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-type p {
            margin-bottom: 0;
            font-size: 15px;
            color: #a0a0a0;
        }
        
        /* Footer */
        footer {
            background-color: #0a0e27;
            color: #e0e0e0;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(131, 56, 236, 0.2);
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #06ffa5;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #ff006e, #8338ec);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-column ul li a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 5px;
            background-color: #8338ec;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #06ffa5;
            padding-left: 20px;
        }
        
        .footer-column ul li a:hover::before {
            background-color: #06ffa5;
            width: 8px;
            height: 8px;
        }
        
        .footer-column p {
            margin-bottom: 10px;
            line-height: 1.6;
            color: #a0a0a0;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(131, 56, 236, 0.2);
            font-size: 14px;
            color: #a0a0a0;
            position: relative;
            z-index: 2;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 14, 39, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
                border-top: 1px solid rgba(131, 56, 236, 0.3);
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .content-section {
                padding: 25px;
            }
        }

