        /* Стили для страницы политики конфиденциальности */
        .privacy-page {
            padding: 50px 20px;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 36px;
            color: #333;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .page-header h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #4299e1;
        }
        
        .last-updated {
            font-size: 14px;
            color: #666;
        }
        
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section h2 {
            font-size: 24px;
            color: #2d3748;
            margin-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 10px;
        }
        
        .privacy-section h3 {
            font-size: 20px;
            color: #2d3748;
            margin: 25px 0 15px;
        }
        
        .privacy-section p, .privacy-section ul, .privacy-section ol {
            margin-bottom: 15px;
            color: #4a5568;
        }
        
        .privacy-section ul, .privacy-section ol {
            padding-left: 20px;
        }
        
        .privacy-section li {
            margin-bottom: 8px;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 28px;
            }
            
            .privacy-section h2 {
                font-size: 22px;
            }
            
            .privacy-section h3 {
                font-size: 18px;
            }
        }