/* Страница политики конфиденциальности */
.privacy-policy-page {
    padding: 40px 0 60px;
}

.privacy-content {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    border: 1px solid #f0e8dd;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.privacy-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2E2E2E;
    text-align: center;
    margin-bottom: 30px;
}

.privacy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: #2E2E2E;
    margin: 40px 0 20px;
    position: relative;
    display: inline-block;
}

.privacy-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C6A43F, transparent);
}

.privacy-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #2E2E2E;
    margin: 30px 0 15px;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-content ul, .privacy-content ol {
    margin: 0 0 20px 20px;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content a {
    color: #C6A43F;
    text-decoration: none;
    transition: color 0.2s;
}

.privacy-content a:hover {
    color: #b08c35;
}

.privacy-content blockquote {
    background: #f9f5f0;
    border-left: 4px solid #C6A43F;
    margin: 20px 0;
    padding: 20px;
    border-radius: 0 20px 20px 0;
    font-style: normal;
}

.privacy-content blockquote p {
    margin-bottom: 10px;
}

.privacy-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
    .privacy-content {
        padding: 25px;
    }
    .privacy-content h1 {
        font-size: 36px;
    }
    .privacy-content h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .privacy-content {
        padding: 20px;
    }
    .privacy-content h1 {
        font-size: 28px;
    }
    .privacy-content h2 {
        font-size: 22px;
    }
    .privacy-content h3 {
        font-size: 20px;
    }
}