/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        } */

/* Контейнер */
.privace__bloc {
    max-width: 1200px;
    margin: 70px auto;
    padding: 2rem 1rem;
}

/* Секции */
.privace_section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #c6702a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privace_section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Заголовки */
.privace_section>p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #4a5568;
    font-size: 1rem;
}

.privace_section>h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
}

.privace_section>ul {
    margin: 1rem 0;
    padding-left: 2rem;
    list-style-type: none;
}

.privace_section>ul>li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Особые стили для нумерованных пунктов */
.privace_section p:contains("2.1."),
.privace_section p:contains("3.1."),
.privace_section p:contains("4.1."),
.privace_section p:contains("5.1."),
.privace_section p:contains("6.1."),
.privace_section p:contains("7.1."),
.privace_section p:contains("8.1."),
.privace_section p:contains("9.1."),
.privace_section p:contains("10.1."),
.privace_section p:contains("11.1."),
.privace_section p:contains("12.1."),
.privace_section p:contains("13.1."),
.privace_section p:contains("14.1."),
.privace_section p:contains("15.1."),
.privace_section p:contains("16.1."),
.privace_section p:contains("17.1."),
.privace_section p:contains("18.1."),
.privace_section p:contains("19.1."),
.privace_section p:contains("20.1.") {
    margin-bottom: 0.5rem;
}

/* Выделение важной информации */
.privace_section strong {
    color: #2d3748;
    font-weight: 600;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privace_section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Последовательное появление секций */
.privace_section:nth-child(1) {
    animation-delay: 0.1s;
}

.privace_section:nth-child(2) {
    animation-delay: 0.2s;
}

.privace_section:nth-child(3) {
    animation-delay: 0.3s;
}

.privace_section:nth-child(4) {
    animation-delay: 0.4s;
}

.privace_section:nth-child(5) {
    animation-delay: 0.5s;
}

.privace_section:nth-child(6) {
    animation-delay: 0.6s;
}

.privace_section:nth-child(7) {
    animation-delay: 0.7s;
}

.privace_section:nth-child(8) {
    animation-delay: 0.8s;
}

.privace_section:nth-child(9) {
    animation-delay: 0.9s;
}

.privace_section:nth-child(10) {
    animation-delay: 1.0s;
}

.privace_section:nth-child(11) {
    animation-delay: 1.1s;
}

.privace_section:nth-child(12) {
    animation-delay: 1.2s;
}

.privace_section:nth-child(13) {
    animation-delay: 1.3s;
}

.privace_section:nth-child(14) {
    animation-delay: 1.4s;
}

.privace_section:nth-child(15) {
    animation-delay: 1.5s;
}

.privace_section:nth-child(16) {
    animation-delay: 1.6s;
}

.privace_section:nth-child(17) {
    animation-delay: 1.7s;
}

.privace_section:nth-child(18) {
    animation-delay: 1.8s;
}

.privace_section:nth-child(19) {
    animation-delay: 1.9s;
}

.privace_section:nth-child(20) {
    animation-delay: 2.0s;
}



/* Адаптивность */
@media (max-width: 768px) {
    .privace__bloc {
        padding: 1rem 0.5rem;
    }

    .privace_section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    p {
        font-size: 0.95rem;
    }

    ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privace_section {
        padding: 1rem;
        border-left-width: 3px;
    }

    h2 {
        font-size: 1.2rem;
    }

    p,
    li {
        font-size: 0.9rem;
    }
}

/* Подсветка ссылок в тексте */
a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #764ba2;
    text-decoration: underline;
}