/* policy.css */

.policy-page {
    display: flex;
    justify-content: center;
}

.policy-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Titre principal de la page en Oswald */
.policy-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.policy-meta {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 0.9rem;
}

.policy-divider {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #eaeaea;
}

/* Police par défaut pour le contenu */
.policy-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #444;
}

/*
* CORRECTIF :
* Applique 'Franklin Gothic Demi' à TOUS les titres (h1 à h6)
* qui se trouvent à l'intérieur de la div .policy-content.
*/
.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5,
.policy-content h6 {
    font-family: 'Franklin Gothic Demi', sans-serif;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 15px;
}