/* Specific styles for Politique de confidentialité */
.privacy-container {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 7.5rem 1.5rem 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-header h1 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.privacy-header .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.privacy-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.privacy-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.privacy-card:hover {
    box-shadow: var(--shadow-md);
}

.privacy-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.privacy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    flex-shrink: 0;
}

.privacy-card h2 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.privacy-card p, .privacy-card ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card ul {
    padding-left: 1.5rem;
}

.privacy-card li {
    margin-bottom: 0.5rem;
}

.privacy-badge-summary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.privacy-stat-box {
    flex: 1 1 250px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.privacy-stat-box i {
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.privacy-stat-box h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-color);
}

.privacy-stat-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.privacy-contact-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(249, 115, 22, 0.04));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.privacy-contact-box h2 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.privacy-contact-box p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-container {
        padding-top: 6.75rem;
    }
}
