/* Стили для страниц политик */
.policy-page {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.policy-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
}

.policy-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-green));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.policy-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.policy-date {
    text-align: right;
    margin-bottom: 30px;
    font-style: italic;
    color: #777;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    padding-left: 15px;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--accent-green);
    border-radius: 5px;
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    text-decoration: underline;
    color: var(--accent-coral);
}

@media (max-width: 768px) {
    .policy-content {
        padding: 20px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
} 