/* Видеофон для страницы политики */
.policy-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.policy-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.policy-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

/* Основной контент политики */
.policy-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    position: relative;
}

.policy-container {
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #009846, #007c3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Контент политики */
.policy-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.policy-section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #009846;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 152, 70, 0.3);
}

.policy-section-title:first-child {
    margin-top: 0;
}

.policy-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.policy-text strong {
    color: #ffffff;
    font-weight: 600;
}

.policy-list {
    padding-left: 20px;
    margin: 20px 0;
}

.policy-list li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
}

.policy-list li::before {
    content: "•";
    color: #009846;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.policy-highlight {
    background: rgba(0, 152, 70, 0.1);
    border-left: 4px solid #009846;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.policy-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.policy-contact {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 152, 70, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 152, 70, 0.2);
}

.policy-contact-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.policy-contact-email {
    display: inline-block;
    background: linear-gradient(135deg, #009846, #007c3a);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Unbounded', sans-serif;
    transition: all 0.3s ease;
}

.policy-contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 152, 70, 0.4);
}

/* Кнопка назад */
.policy-back {
    text-align: center;
    margin-top: 50px;
}

.policy-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #009846;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Unbounded', sans-serif;
    padding: 12px 25px;
    border: 2px solid #009846;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(0, 152, 70, 0.1);
}

.policy-back-link:hover {
    background: rgba(0, 152, 70, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 152, 70, 0.3);
}

.policy-back-link i {
    transition: transform 0.3s ease;
}

.policy-back-link:hover i {
    transform: translateX(-5px);
}

/* Адаптив */
@media (max-width: 768px) {
    .policy-section {
        padding: 120px 0 60px;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .policy-content {
        padding: 30px;
    }
    
    .policy-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-section-title {
        font-size: 1.3rem;
    }
    
    .policy-text {
        font-size: 0.95rem;
    }
}