﻿/* Базовые стили для страницы политики */
.privacy-page {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(rgba(250, 247, 242, 0.9), rgba(240, 230, 212, 0.9));
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: #5c3d09;
    line-height: 1.6;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.privacy-box {
    background: rgba(255, 253, 245, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(92, 61, 9, 0.15);
    border: 1px solid #e6d6b5;
    position: relative;
}

    .privacy-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #f0c45a, #e6b236);
        border-radius: 16px 16px 0 0;
    }

h1 {
    color: #5c3d09;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
}

    h1::after {
        content: '🍯';
        margin-left: 0.8rem;
        font-size: 1.8rem;
    }

.subtitle {
    text-align: center;
    color: #8a743c;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

h2 {
    color: #5c3d09;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0c45a;
}

h3 {
    color: #8a743c;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.5rem 0 0.8rem 0;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

strong {
    color: #5c3d09;
    font-weight: 600;
}

.section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(230, 214, 181, 0.08);
    border-radius: 12px;
    border-left: 4px solid #e6b236;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.section-number {
    background: #e6b236;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.highlight-box {
    background: rgba(240, 230, 212, 0.3);
    border: 1px solid #e6d6b5;
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1.2rem 0;
    position: relative;
}

    .highlight-box::before {
        content: '💡';
        position: absolute;
        left: -10px;
        top: -10px;
        background: #f0c45a;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

ul, ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.8rem;
    position: relative;
}

    li::marker {
        color: #e6b236;
        font-weight: 600;
    }

.footer-note {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e6d6b5;
    color: #8a743c;
    font-size: 0.9rem;
}

.contact-info {
    background: rgba(168, 201, 127, 0.1);
    border: 1px solid #a8c97f;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1rem;
    }

    .privacy-box {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-box {
        padding: 1.5rem;
        border-radius: 12px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .section-number {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.9rem;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-box {
    animation: fadeInUp 0.6s ease-out;
}

.section {
    animation: fadeInUp 0.8s ease-out;
}
