:root {
            --primary-bg: #0a192f;
            --secondary-bg: #172a45;
            --accent-1: #64ffda;
            --accent-2: #f06292;
            --accent-3: #ffd54f;
            --text-primary: #e6f1ff;
            --text-secondary: #8892b0;
            --text-dark: #0a192f;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.85);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent-1);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Courier New', monospace;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-1);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-primary);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px;
            min-height: 100vh;
        }

        .page-header {
            background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/08.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: -1;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: var(--accent-1);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-family: 'Courier New', monospace;
        }

        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
        }

        .page-header p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .cookie-content {
            padding: 60px 0;
        }

        .cookie-section {
            margin-bottom: 40px;
        }

        .cookie-section h2 {
            font-size: 1.8rem;
            color: var(--accent-1);
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
            font-family: 'Courier New', monospace;
        }

        .cookie-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background-color: var(--accent-2);
        }

        .cookie-section h3 {
            font-size: 1.4rem;
            color: var(--accent-2);
            margin: 25px 0 15px;
            font-family: 'Courier New', monospace;
        }

        .cookie-section p {
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .cookie-section li {
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }

        .cookie-type {
            background-color: var(--secondary-bg);
            border-radius: 4px;
            padding: 25px;
            box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
            border-left: 4px solid var(--accent-1);
        }

        .cookie-type h3 {
            color: var(--accent-1);
            margin-bottom: 15px;
            font-size: 1.3rem;
            font-family: 'Courier New', monospace;
        }

        .cookie-type p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        footer {
            background-color: var(--secondary-bg);
            padding: 70px 0 20px;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-1);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Courier New', monospace;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-1);
            padding-left: 5px;
        }

        .footer-contact p {
            margin-bottom: 10px;
            color: var(--text-secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--secondary-bg);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 15px 0;
            }

            .burger {
                display: block;
                z-index: 1001;
            }

            .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);
            }

            .page-header h1 {
                font-size: 2rem;
            }
        }

