/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ ПОЛИТИКИ ===== */
.policy-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(220, 194, 170, 0.9) 0%, rgba(32, 31, 30, 0.9) 100%);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 194, 170, 0.3) 0%, rgba(32, 31, 30, 0.7) 100%),
                url('../../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
}

.policy-hero .container {
    position: relative;
    z-index: 2;
}

.policy-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.policy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
.policy-content {
    padding: 60px 0 80px;
    background: white;
    overflow-x: hidden;
    width: 100%;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.policy-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dcc2aa;
    font-weight: 700;
    overflow-wrap: break-word;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: #444;
    margin: 25px 0 15px;
    font-weight: 600;
    overflow-wrap: break-word;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.policy-section ul {
    margin: 15px 0 25px 25px;
    color: #555;
    padding-left: 0;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    overflow-wrap: break-word;
}

.policy-date {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    color: #777;
    font-style: italic;
    width: 100%;
}

.contact-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-top: 35px;
    border-left: 4px solid #dcc2aa;
    width: 100%;
    box-sizing: border-box;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ОБЩИЕ СТИЛИ ===== */
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .policy-hero {
        padding: 130px 0 50px;
    }
}

@media (max-width: 992px) {
    .policy-hero {
        padding: 120px 0 40px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 110px 0 30px;
        margin-top: 0;
    }

    .policy-hero h1 {
        font-size: 2.2rem !important;
        padding: 0 15px !important;
        line-height: 1.3 !important;
    }

    .policy-hero p {
        font-size: 1rem !important;
        padding: 0 15px !important;
        line-height: 1.5 !important;
    }

    .policy-content {
        padding: 40px 0 60px;
    }

    .policy-container {
        padding: 0 15px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .policy-section h3 {
        font-size: 1.2rem;
        margin: 20px 0 12px;
    }

    .policy-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-details {
        padding: 20px;
        margin-top: 25px;
    }

    .policy-date {
        margin-top: 40px;
        padding-top: 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .policy-hero {
        padding: 100px 0 25px;
    }

    .policy-hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    .policy-hero p {
        font-size: 0.95rem !important;
    }

    .policy-content {
        padding: 30px 0 40px;
    }

    .policy-section {
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .policy-section ul {
        margin-left: 20px;
    }

    .contact-details {
        padding: 15px;
    }

    .policy-date {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .policy-hero {
        padding: 90px 0 20px;
    }

    .policy-hero h1 {
        font-size: 1.6rem !important;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .policy-container {
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .policy-hero h1 {
        font-size: 1.5rem !important;
    }
}