/* Стили для страницы политики конфиденциальности */

.privacy-policy-content {
    margin: 0 auto;
}

.privacy-policy-text {
    line-height: 1.4;
    color: var(--black);
    padding-top: 20px;
}

.privacy-policy-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    color: var(--black);
}

.privacy-policy-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px 0;
    color: var(--black);
}

.privacy-policy-text p {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.4;
}

.privacy-policy-text ul {
    margin: 15px 0;
    padding-left: 30px;
    list-style-type: disc;
}

.privacy-policy-text ol {
    margin: 15px 0;
    padding-left: 30px;
    list-style-type: decimal;
    counter-reset: item;
}

.privacy-policy-text ol li {
    margin: 8px 0;
    line-height: 1.4;
    display: list-item;
    list-style-position: outside;
}

.privacy-policy-text ul li {
    margin: 8px 0;
    line-height: 1.4;
    display: list-item;
    list-style-position: outside;
}

.privacy-policy-text a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.privacy-policy-text a:hover {
    color: #2a2d70;
}

@media (max-width: 768px) {
    
    .privacy-policy-text h2 {
        font-size: 22px;
    }
    
    .privacy-policy-text h3 {
        font-size: 18px;
    }
}

