/* rgpd.css */

/* Assurez-vous que les variables de couleur sont définies dans style.css */
:root {
    /* Exemple de couleurs si non définies: */
    /* --primary: #FFB77E; */
    /* --text-color: #333; */
    /* --light-gray: #f7f7f7; */
}

.legal-content {
    padding: 80px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray, #eee);
}

.legal-header h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-color, #333);
}

.legal-header .subtitle {
    color: var(--primary, #FFB77E);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.legal-header .intro {
    max-width: 700px;
    margin: 20px auto 10px;
    font-size: 18px;
    color: #555;
}

.legal-header .version {
    font-size: 14px;
    color: #777;
}

/* Sections du Corps du Document */
.legal-section {
    padding: 20px 0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-section h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary, #FFB77E);
    color: var(--text-color, #333);
}

.legal-section p, .legal-section li {
    font-size: 16px;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none; /* Supprime les puces par défaut */
    padding-left: 0;
    margin-left: 20px;
}

.legal-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.legal-section ul li::before {
    content: "\f058"; /* Icône de checkmark (Font Awesome) */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary, #FFB77E);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}

.legal-section .action-note {
    font-style: italic;
    padding: 15px;
    border-left: 4px solid #f0f0f0;
    background-color: var(--light-gray, #fcfcfc);
    margin-top: 25px;
}


/* Tableau des Données Collectées */
.data-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 15px;
}

.data-table th, .data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.data-table thead th {
    background-color: var(--primary, #FFB77E);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
}

.data-table tbody tr:nth-child(even) {
    background-color: var(--light-gray, #f9f9f9);
}