* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        :root {
            --primary-color: #00cc99;
            --secondary-color: #ff00cc;
            --accent-color: #0099ff;
            --dark-bg: #0a1a1a;
            --light-text: #e0f0e0;
            --card-bg: rgba(15, 30, 30, 0.8);
        }

        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--primary-color);
            box-shadow: 0 0 15px rgba(0, 204, 153, 0.5);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 0 0 10px var(--primary-color);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--secondary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--secondary-color);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
        }

        .cookie-header {
            padding: 60px 0;
            text-align: center;
            background: linear-gradient(rgba(10, 26, 26, 0.7), rgba(10, 26, 26, 0.9)), url('../img/10.webp');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .cookie-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 204, 153, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(255, 0, 204, 0.2) 0%, transparent 50%);
            z-index: 1;
        }

        .cookie-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-shadow: 0 0 15px rgba(0, 204, 153, 0.7);
            position: relative;
            z-index: 2;
        }

        .cookie-header p {
            font-size: 1.2rem;
            color: var(--secondary-color);
            position: relative;
            z-index: 2;
        }

        .cookie-content {
            padding: 60px 0;
            background: linear-gradient(180deg, var(--dark-bg), #1a2a2a);
        }

        .cookie-section {
            margin-bottom: 40px;
            background: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(0, 204, 153, 0.2);
            box-shadow: 0 0 20px rgba(0, 204, 153, 0.1);
        }

        .cookie-section h2 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .cookie-section h3 {
            color: var(--primary-color);
            margin: 20px 0 10px;
            font-size: 1.3rem;
        }

        .cookie-section p {
            margin-bottom: 15px;
        }

        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .cookie-section li {
            margin-bottom: 10px;
        }

        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .cookie-type {
            background: rgba(25, 40, 40, 0.7);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid rgba(255, 0, 204, 0.2);
        }

        .cookie-type h4 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            padding: 50px 0 30px;
            border-top: 1px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo h2 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .footer-logo p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
        }

        .footer-links h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .footer-contact {
            flex: 1;
            min-width: 250px;
        }

        .footer-contact h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-contact p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: block;
                z-index: 1001;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(10, 26, 26, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                z-index: 999;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            nav ul li a {
                font-size: 1.2rem;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .cookie-header h1 {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

