/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a237e; /* Тот же тёмно-синий фон */
    color: white;
    line-height: 1.6;
    min-height: 100vh;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Шапка страницы */
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.back-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Основной контент */
.privacy-content {
    flex: 1;
    margin-bottom: 2rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-section p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Контактная информация */
.contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-info strong {
    color: white;
    font-weight: 600;
}

/* Дата последнего обновления */
.last-updated {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Подвал */
.privacy-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.privacy-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Адаптивный дизайн */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 0.5rem;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 0.8rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section p {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

/* Анимации */
.privacy-section {
    animation: fadeInUp 0.6s ease-out;
}

.privacy-section:nth-child(2) {
    animation-delay: 0.1s;
}

.privacy-section:nth-child(3) {
    animation-delay: 0.2s;
}

.privacy-section:nth-child(4) {
    animation-delay: 0.3s;
}

.privacy-section:nth-child(5) {
    animation-delay: 0.4s;
}

.privacy-section:nth-child(6) {
    animation-delay: 0.5s;
}

.privacy-section:nth-child(7) {
    animation-delay: 0.6s;
}

.privacy-section:nth-child(8) {
    animation-delay: 0.7s;
}

.privacy-section:nth-child(9) {
    animation-delay: 0.8s;
}

.privacy-section:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}
