/* Container */
.legal-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Titres */
.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Grille de cartes (si besoin) ou liste verticale */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Section Card */
.legal-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Header de section avec icône */
.legal-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.legal-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.legal-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

/* Texte */
.legal-text {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--gray-700);
}

.legal-list li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Liens */
.legal-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.legal-link:hover {
    color: var(--secondary);
}

/* Mise à jour */
.legal-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: var(--gray-500);
    font-size: 0.9rem;
}