/* =======================================================================
   STYLES DE LA MODALE LÉGALE
   Ajout de numéros de section et d'icônes.
   ======================================================================= */

#legal-mentions-content {
    background-color: #F5F5F7;
    color: #1d1d1f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding: 25px;
    border-radius: 12px;
    counter-reset: section-counter; /* Initialise le compteur de section */
}

/* Titre principal */
#legal-mentions-content h3 {
    margin: 0 0 20px 0;
    font-size: 1.5em;
    color: #1d1d1f;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

/* Titres de section */
#legal-mentions-content h4 {
    font-size: 1.3em;
    color: #007AFF;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9e9ed;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Les numéros de section ont été retirés à la demande de l'utilisateur */

/* Style pour les icônes dans les titres */
#legal-mentions-content h4 i {
    font-size: 0.9em;
    width: 20px; /* Assure un alignement constant */
    text-align: center;
}

/* Style pour les encadrés d'information */
.legal-card {
    background-color: #FFFFFF;
    border: 1px solid #e9e9ed;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.legal-card strong {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #000;
}

#legal-mentions-content p {
    margin-bottom: 15px;
}

#legal-mentions-content ul {
    list-style-type: none;
    padding-left: 0;
}

#legal-mentions-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

#legal-mentions-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #34C759;
    font-weight: bold;
}