/* -------------------------------------------------------------------------
   SECTION MENTIONS LÉGALES x3
------------------------------------------------------------------------- */
.privacy-section .form-container {
    padding: 60px 50px; /* Plus d'espace pour la lecture */
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Grille 2 colonnes sur PC */
    gap: 48px 60px;
    align-items: start;
}

.privacy-block h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-num {
    color: var(--brand);
    font-family: ui-monospace, monospace;
    font-size: 0.95rem;
    opacity: 0.8;
}

.privacy-block p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.privacy-block strong {
    color: var(--text);
}

.privacy-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid color-mix(in srgb, var(--muted) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.85rem;
}

.privacy-footer svg {
    width: 20px;
    height: 20px;
    fill: var(--brand);
    opacity: 0.8;
}

/* -------------------------------------------------------------------------
   RESPONSIVE (TABLETTES & MOBILES)
------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .privacy-content {
        grid-template-columns: 1fr; /* Passage en 1 colonne */
        gap: 40px;
    }
    
    .privacy-section .form-container {
        padding: 40px 24px;
    }
    
    .ls-privacy-title {
        margin-top: 30% !important;
    }
}

