/* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        /* Стили для Vaporwave */
        :root {
            --primary-color: #ff6ec7;
            --secondary-color: #7878f0;
            --accent-color: #04f5ff;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --text-color: #333;
            --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
        
        /* Хедер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            color: var(--accent-color);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 20px;
        }
        
        .nav a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav a:hover {
            color: var(--accent-color);
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Контент страницы */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-title h1 {
            font-size: 36px;
            margin-bottom: 15px;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
        }
        
        .terms-content {
            background-color: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .terms-section h3 {
            font-size: 20px;
            margin: 20px 0 10px;
            color: var(--primary-color);
        }
        
        .terms-section p {
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            margin-bottom: 8px;
        }
        
        /* Футер */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #999;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-color);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateX(-100%);
                transition: transform 0.3s ease-out;
                z-index: 999;
            }
            
            .nav.active {
                transform: translateX(0);
            }
            
            .nav li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .page-title h1 {
                font-size: 28px;
            }
            
            .terms-content {
                padding: 20px;
            }
        }

