/* Vaporwave стиль с неоновыми цветами */
        :root {
            --primary-color: #ff00ff;
            --secondary-color: #00ffff;
            --dark-bg: #1a0033;
            --light-text: #ffffff;
            --dark-text: #333333;
            --accent-color: #ff00aa;
            --section-bg: rgba(26, 0, 51, 0.8);
            --gradient-1: linear-gradient(135deg, #ff00ff, #00ffff);
            --gradient-2: linear-gradient(135deg, #00ffff, #ff00ff);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        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;
            padding: 0 15px;
        }
        
        /* Header стили */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 0, 51, 0.9);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--primary-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-size: 16px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 5px var(--secondary-color);
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
        }
        
        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Content стили */
        .content {
            padding: 120px 0 50px;
            background-color: var(--section-bg);
            position: relative;
            overflow: hidden;
        }
        
        .content::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: var(--gradient-1);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }
        
        .content::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: var(--gradient-2);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: var(--gradient-1);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .privacy-content {
            background-color: var(--dark-bg);
            padding: 40px;
            border: 1px solid var(--primary-color);
            position: relative;
            z-index: 1;
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .privacy-section h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin: 20px 0 10px;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-section li {
            margin-bottom: 8px;
        }
        
        /* Footer стили */
        footer {
            background-color: var(--dark-bg);
            color: var(--light-text);
            padding: 50px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 100;
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .privacy-content {
                padding: 20px;
            }
        }

