:root {
            --primary: #0a192f;
            --secondary: #172a45;
            --accent: #64ffda;
            --accent-dark: #0d7377;
            --text-light: #ccd6f6;
            --text-dark: #8892b0;
            --highlight: #f06292;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary);
            color: var(--text-light);
            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;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--highlight);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 40vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            z-index: -1;
        }
        
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            background-color: var(--accent);
            border-radius: 50%;
            opacity: 0.3;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--text-light);
        }
        
        .hero h1 span {
            color: var(--accent);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--text-dark);
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .section-title h2 span {
            color: var(--accent);
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Cookie Content */
        .cookie-content {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-content h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .cookie-content h3 {
            font-size: 22px;
            margin: 30px 0 15px;
            color: var(--text-light);
        }
        
        .cookie-content p {
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        .cookie-content ul {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        
        .cookie-content ul li {
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .cookie-table th, .cookie-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookie-table th {
            color: var(--accent);
            font-weight: 600;
        }
        
        .cookie-table td {
            color: var(--text-dark);
        }
        
        .last-updated {
            text-align: center;
            margin-top: 40px;
            color: var(--text-dark);
            font-style: italic;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .footer-contact p {
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            color: var(--text-dark);
            font-size: 14px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--secondary);
            padding: 20px 0;
            text-align: center;
            color: var(--text-dark);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                flex-direction: column;
                top: 68px;
                background-color: #0a192f;
            }
            nav ul.active{
                display: flex;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .cookie-content {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .cookie-table {
                font-size: 14px;
            }
            
            .cookie-table th, .cookie-table td {
                padding: 8px 10px;
            }
        }

