/* CSS стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1a1a1a;
            color: #ffffff;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #00d4ff;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo:hover {
            color: #ffffff;
            transition: color 0.3s ease;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #00d4ff;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 80px;
            min-height: calc(100vh - 200px);
        }
        
        .cookie-content {
            padding: 50px 0;
            background-color: #222222;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .cookie-header {
            text-align: center;
            padding: 30px 0;
            background-color: #1a1a1a;
            border-radius: 10px 10px 0 0;
        }
        
        .cookie-header h1 {
            font-size: 36px;
            color: #00d4ff;
            margin-bottom: 15px;
        }
        
        .cookie-header p {
            font-size: 18px;
            color: #c0c0c0;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .cookie-section {
            padding: 30px;
            border-bottom: 1px solid #333333;
        }
        
        .cookie-section:last-child {
            border-bottom: none;
        }
        
        .cookie-section h2 {
            font-size: 24px;
            color: #00d4ff;
            margin-bottom: 20px;
        }
        
        .cookie-section h3 {
            font-size: 20px;
            color: #ffffff;
            margin: 20px 0 10px;
        }
        
        .cookie-section p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .cookie-section ul {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section ul li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .cookie-section ol {
            list-style-type: decimal;
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section ol li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .cookie-type {
            background-color: #1a1a1a;
            padding: 20px;
            border-radius: 10px;
            border-left: 3px solid #00d4ff;
        }
        
        .cookie-type h4 {
            font-size: 18px;
            color: #00d4ff;
            margin-bottom: 10px;
        }
        
        .cookie-type p {
            font-size: 14px;
            line-height: 1.5;
        }
        
        /* Footer */
        footer {
            background-color: #1a1a1a;
            padding: 50px 0 30px;
            border-top: 1px solid #333333;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #00d4ff;
            margin-bottom: 15px;
        }
        
        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #c0c0c0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: #00d4ff;
        }
        
        .footer-contact h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #c0c0c0;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333333;
            color: #c0c0c0;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }
            
            nav ul.show {
                transform: translateX(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .cookie-header h1 {
                font-size: 28px;
            }
            
            .cookie-header p {
                font-size: 16px;
            }
        }

