* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333333;
            line-height: 1.6;
        }
        
        .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(26, 42, 58, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo:hover {
            color: #00ffcc;
            transition: color 0.3s ease;
        }
        
        .nav {
            display: flex;
        }
        
        .nav ul {
            display: flex;
            list-style: none;
        }
        
        .nav ul li {
            margin-left: 30px;
        }
        
        .nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav ul li a:hover {
            color: #00ffcc;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }
        
        /* Main content */
        main {
            padding-top: 80px;
            min-height: 100vh;
        }
        
        .privacy-section {
            padding: 60px 0;
            background-color: #ffffff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h1 {
            font-size: 36px;
            color: #1a2a3a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #00ffcc;
        }
        
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .privacy-content h2 {
            font-size: 24px;
            color: #1a2a3a;
            margin: 30px 0 15px;
        }
        
        .privacy-content h3 {
            font-size: 20px;
            color: #1a2a3a;
            margin: 25px 0 10px;
        }
        
        .privacy-content p {
            margin-bottom: 15px;
        }
        
        .privacy-content ul {
            margin: 0 0 15px 20px;
        }
        
        .privacy-content li {
            margin-bottom: 8px;
        }
        
        /* Footer */
        footer {
            background-color: #1a2a3a;
            color: #ffffff;
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #00ffcc;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #00ffcc;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a2a3a;
                padding: 20px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }
            
            .nav.show {
                transform: translateX(0);
            }
            
            .nav ul {
                flex-direction: column;
            }
            
            .nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .section-title h1 {
                font-size: 28px;
            }
        }

