/* Стили CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #0a192f;
            color: #ccd6f6;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        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 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #64ffda;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: #ccd6f6;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 30px;
        }
        
        .nav a {
            color: #ccd6f6;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav a:hover {
            color: #64ffda;
        }
        
        .nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #64ffda;
            transition: width 0.3s ease;
        }
        
        .nav a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #ccd6f6;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            min-height: 100vh;
        }
        
        .page-header {
            padding: 60px 0;
            background-color: #172a45;
            margin-bottom: 60px;
        }
        
        .page-title {
            font-size: 40px;
            margin-bottom: 15px;
            color: #ccd6f6;
        }
        
        .page-subtitle {
            color: #8892b0;
            max-width: 800px;
        }
        
        .cookie-content {
            background-color: #172a45;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-section {
            margin-bottom: 40px;
        }
        
        .cookie-section:last-child {
            margin-bottom: 0;
        }
        
        .cookie-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #ccd6f6;
        }
        
        .cookie-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: #ccd6f6;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            color: #8892b0;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #8892b0;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
        }
        
        .cookie-section a {
            color: #64ffda;
            text-decoration: none;
        }
        
        .cookie-section a:hover {
            text-decoration: underline;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            color: #8892b0;
        }
        
        .cookie-table th,
        .cookie-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(136, 146, 176, 0.2);
        }
        
        .cookie-table th {
            background-color: rgba(10, 25, 47, 0.5);
            color: #ccd6f6;
            font-weight: 600;
        }
        
        .cookie-table tr:last-child td {
            border-bottom: none;
        }
        
        .cookie-preferences {
            background-color: rgba(10, 25, 47, 0.5);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }
        
        .cookie-preferences h3 {
            margin-top: 0;
            margin-bottom: 20px;
            color: #ccd6f6;
        }
        
        .cookie-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(136, 146, 176, 0.2);
        }
        
        .cookie-option:last-child {
            border-bottom: none;
        }
        
        .cookie-option-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #ccd6f6;
        }
        
        .cookie-option-info p {
            font-size: 14px;
            margin: 0;
            color: #8892b0;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #2a3f5f;
            transition: .4s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #64ffda;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .cookie-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .cookie-btn {
            padding: 10px 25px;
            background-color: transparent;
            color: #ccd6f6;
            border: 1px solid #ccd6f6;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-btn.accept {
            background-color: #64ffda;
            color: #0a192f;
            border-color: #64ffda;
        }
        
        .cookie-btn:hover {
            background-color: rgba(100, 255, 218, 0.1);
        }
        
        .cookie-btn.accept:hover {
            background-color: #4ce4c0;
        }
        
        /* Footer */
        footer {
            padding: 50px 0 30px;
            background-color: #172a45;
        }
        
        .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: 700;
            color: #64ffda;
            margin-bottom: 15px;
        }
        
        .footer-logo span {
            color: #ccd6f6;
        }
        
        .footer-text {
            color: #8892b0;
            margin-bottom: 20px;
        }
        
        .footer-links h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ccd6f6;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #8892b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #64ffda;
        }
        
        .footer-contact h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ccd6f6;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #8892b0;
        }
        
        .contact-item i {
            color: #64ffda;
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #0a192f;
            color: #8892b0;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 25, 47, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav.show {
                transform: translateY(0);
            }
            
            .nav li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title {
                font-size: 32px;
            }
            
            .cookie-content {
                padding: 25px;
            }
            
            .cookie-section h2 {
                font-size: 24px;
            }
            
            .cookie-section h3 {
                font-size: 20px;
            }
            
            .cookie-option {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 28px;
            }
            
            .cookie-table {
                font-size: 14px;
            }
            
            .cookie-table th,
            .cookie-table td {
                padding: 8px 10px;
            }
        }

