/* ==========================================================================
   POLITIQUE DE CONFIDENTIALITÉ
   ========================================================================== */

.privacy-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    font-size: 16px;
    line-height: 1.75;
    color: #424242;
}

.privacy-content a { 
    color: #6366f1; 
    text-decoration: none; 
}

.privacy-content a:hover { 
    text-decoration: underline; 
}

/* Title */
.privacy-content .page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.privacy-content .page-meta {
    font-size: 0.875rem;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

/* Intro */
.privacy-content .intro {
    font-size: 1.125rem;
    color: #424242;
    margin-bottom: 3rem;
}

/* Sections */
.privacy-content .section {
    margin-bottom: 3rem;
}

.privacy-content .section__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.privacy-content .section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin: 1.75rem 0 0.75rem;
}

.privacy-content .section p {
    margin-bottom: 1rem;
}

.privacy-content .section ul {
    margin: 0 0 1rem 1.25rem;
}

.privacy-content .section li {
    margin-bottom: 0.375rem;
}

.privacy-content .section li strong {
    color: #0a0a0a;
}

/* Tables */
.privacy-content .table-wrap {
    overflow-x: auto;
    margin: 1.25rem 0;
}

.privacy-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.privacy-content th, 
.privacy-content td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.privacy-content th {
    font-weight: 600;
    color: #0a0a0a;
    background: #fafafa;
}

.privacy-content td {
    color: #424242;
}

.privacy-content tr:last-child td {
    border-bottom: none;
}

/* Note */
.privacy-content .note {
    background: #fafafa;
    border-left: 3px solid #6366f1;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.privacy-content .note strong {
    color: #0a0a0a;
}

/* Contact box */
.privacy-content .contact-box {
    background: #fafafa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.privacy-content .contact-box__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.25rem;
}

.privacy-content .contact-box__email {
    font-size: 1rem;
    color: #6366f1;
    font-weight: 500;
}

.privacy-content .contact-box__note {
    font-size: 0.8125rem;
    color: #6b6b6b;
    margin-top: 0.5rem;
}

/* Rights list */
.privacy-content .rights-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.privacy-content .rights-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.625rem;
}

.privacy-content .rights-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6366f1;
}

.privacy-content .rights-list strong {
    color: #0a0a0a;
}

/* Responsive */
@media (max-width: 600px) {
    .privacy-content {
        padding: 2rem 1rem 3rem;
    }
    
    .privacy-content .page-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   PAGE CONTACT - Styles supplémentaires
   ========================================================================== */

/* Contact box avec icône */
.privacy-content .contact-box--with-icon {
    padding: 0;
}

.privacy-content .contact-box__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.privacy-content .contact-box__icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.privacy-content .contact-box__icon svg {
    width: 22px;
    height: 22px;
    color: #6366f1;
}

.privacy-content .contact-box__label {
    font-size: 0.8125rem;
    color: #6b6b6b;
    margin-bottom: 0.125rem;
}

.privacy-content .contact-box__value {
    font-size: 1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin: 0;
}

/* Social links */
.privacy-content .social-section {
    margin-top: 3rem;
}

.privacy-content .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.privacy-content .social-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: #fafafa;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #0a0a0a;
    transition: all 0.2s ease;
}

.privacy-content .social-link:hover {
    background: #f1f1f1;
    text-decoration: none;
    transform: translateY(-2px);
}

.privacy-content .social-link svg {
    width: 20px;
    height: 20px;
    color: #6366f1;
}

@media (max-width: 600px) {
    .privacy-content .social-links {
        flex-direction: column;
    }

    .privacy-content .social-link {
        justify-content: center;
    }
}