/* Fichier: Assets/stylesforprivacypolicy.css */

/* Conteneur principal - Centrer et limiter la largeur du contenu */
.privacy-policy-container {
    max-width: 900px;
    margin: 40px auto; /* 40px d'espace vertical, auto pour centrer horizontalement */
    padding: 0 20px;
    font-family: Arial, sans-serif; /* Choisissez la police de votre site */
    line-height: 1.6;
    color: #333; /* Couleur de texte sombre */
}

/* Style du titre principal */
.privacy-policy-content h1 {
    font-size: 2.2em;
    color: #1a4d8c; /* Couleur principale de votre marque */
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Style de la date de mise à jour */
.privacy-policy-content .last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

/* Style des titres de section */
.privacy-policy-content h2 {
    font-size: 1.5em;
    color: #2c3e50; /* Couleur des sous-titres */
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Style général des paragraphes */
.privacy-policy-content p {
    margin-bottom: 20px;
    text-align: justify; /* Pour un aspect plus professionnel */
}

/* Style des listes (pour les points clés) */
.privacy-policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
    margin-bottom: 20px;
}

/* Mettre en évidence le lien de contact */
.privacy-policy-content a {
    color: #e74c3c; /* Une couleur de lien différente si nécessaire */
    text-decoration: none;
    font-weight: bold;
}

.privacy-policy-content a:hover {
    text-decoration: underline;
}

/* Media Query pour les petits écrans */
@media (max-width: 768px) {
    .privacy-policy-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    .privacy-policy-content h1 {
        font-size: 1.8em;
    }
}