/* =========================
   Feuille de style des pages RGPD
   Respecte l'identité visuelle du site principal
========================= */

.rgpd-container {
    max-width: 1000px;
    margin: 150px auto 60px;
    padding: 0 20px;
    font-family: "Montserrat", sans-serif;
}

.rgpd-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rgpd-section {
    margin-bottom: 40px;
}

.rgpd-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.rgpd-section h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: #444;
}

.rgpd-section p,
.rgpd-section li {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
}

.rgpd-section ul,
.rgpd-section ol {
    padding-left: 30px;
    margin: 20px 0;
}

.rgpd-section li {
    margin-bottom: 10px;
}

.rgpd-section a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s;
}

.rgpd-section a:hover {
    color: #444;
}

.rgpd-section strong {
    font-weight: 600;
    color: #333;
}

/* Style des tableaux */
.rgpd-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.rgpd-section th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.rgpd-section tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Style pour les blocs d'information importante */
.rgpd-important {
    background-color: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #000;
    margin: 20px 0;
}

.rgpd-important p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .rgpd-container {
        margin-top: 120px;
    }

    .rgpd-title {
        font-size: 1.8rem;
    }

    .rgpd-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .rgpd-container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .rgpd-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .rgpd-section h2 {
        font-size: 1.2rem;
    }

    .rgpd-section p,
    .rgpd-section li {
        font-size: 0.95rem;
    }

    .rgpd-section table {
        font-size: 0.9rem;
    }

    .rgpd-section th,
    .rgpd-section td {
        padding: 8px 10px;
    }
}