/* ==========================================================================
   CSS стили для страниц политики
   ========================================================================== */

.policy-page {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #FFF8E1 0%, #F3E5F5 100%);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A237E;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.policy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    border-radius: 2px;
}

.policy-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    padding: 25px;
    background: #FFF8E1;
    border-radius: 15px;
    border-left: 4px solid #F57C00;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A237E;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.policy-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(45deg, #FF6F00, #FF8F00);
    border-radius: 2px;
}

.policy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.policy-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF8F00;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-contact {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #1A237E;
}

.policy-contact p {
    margin-bottom: 10px;
    color: #666;
}

.policy-contact strong {
    color: #1A237E;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.policy-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
}

.policy-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.policy-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #1A237E, #303F9F);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.policy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-intro {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .policy-subtitle {
        font-size: 1.2rem;
    }
    
    .policy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-intro {
        font-size: 1rem;
        padding: 15px;
    }
    
    .policy-contact {
        padding: 20px;
    }
} 