/* === STYLES POUR PAGES POLITIQUES === */
.policy-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.policy-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.policy-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.policy-updated {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.policy-sections {
    margin-top: 2rem;
}

.policy-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-item h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.policy-item h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-item p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.policy-item ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-item strong {
    color: var(--primary-color);
}

.contact-info {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-intro {
        font-size: 1rem;
    }
    
    .policy-item h2 {
        font-size: 1.3rem;
    }
    
    .policy-item h3 {
        font-size: 1.1rem;
    }
    
    .policy-item ul {
        margin-left: 1rem;
    }
} 