/* Стили 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;
        }
        
        .privacy-content {
            background-color: #172a45;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section:last-child {
            margin-bottom: 0;
        }
        
        .privacy-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #ccd6f6;
        }
        
        .privacy-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: #ccd6f6;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
            color: #8892b0;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #8892b0;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
        }
        
        .privacy-section a {
            color: #64ffda;
            text-decoration: none;
        }
        
        .privacy-section a:hover {
            text-decoration: underline;
        }
        
        /* 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;
            }
            
            .privacy-content {
                padding: 25px;
            }
            
            .privacy-section h2 {
                font-size: 24px;
            }
            
            .privacy-section h3 {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 28px;
            }
        }

