/* Стили CSS */
        /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a0033, #330066, #6600cc);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Хедер */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 0, 51, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 30px rgba(102, 0, 204, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff33cc;
            text-decoration: none;
            text-shadow: 0 0 10px #ff33cc;
            letter-spacing: 2px;
        }
        
        .logo:hover {
            color: #ff66ff;
            text-shadow: 0 0 15px #ff66ff;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: #ff33cc;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ff33cc;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Контент страницы */
        main {
            padding-top: 80px;
            min-height: 100vh;
        }
        
        .terms-content {
            padding: 60px 0;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: #ff33cc;
            margin-bottom: 15px;
            text-shadow: 0 0 10px #ff33cc;
        }
        
        .terms-section {
            background: rgba(26, 0, 51, 0.7);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            color: #ff66ff;
            margin-bottom: 20px;
        }
        
        .terms-section h3 {
            font-size: 1.4rem;
            color: #ff99ff;
            margin: 20px 0 10px;
        }
        
        .terms-section p {
            margin-bottom: 15px;
            color: #e6ccff;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #e6ccff;
        }
        
        .terms-section li {
            margin-bottom: 10px;
        }
        
        /* Футер */
        footer {
            background: rgba(26, 0, 51, 0.9);
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #ff66ff;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #e6ccff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ff33cc;
        }
        
        .footer-contact p {
            color: #e6ccff;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cc99ff;
            font-size: 0.9rem;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(26, 0, 51, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
        }

