.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.privacy-content {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.privacy-content h1 {
    color: #5A6DB3;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.privacy-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #5A6DB3;
    border-radius: 2px;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.privacy-section h2 {
    color: #5A6DB3;
    margin-bottom: 15px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #5A6DB3;
    border-radius: 2px;
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #b3b3b3;
    font-size: 1rem;
}

.privacy-section ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 15px;
    color: #b3b3b3;
}

.privacy-section li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.privacy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5A6DB3;
    font-size: 1.2em;
}

/* Анимации при появлении */
.privacy-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Задержка анимации для каждой секции */
.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .privacy-content h1 {
        font-size: 1.8rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }
} 