/* Reset basique */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Typographie & couleurs */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

/* En-tête */
.site-header {
    background: #1565C0;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

/* Contenu principal */
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.policy h2 {
    margin-top: 1.5rem;
    color: #1565C0;
}

.policy p,
.policy ul,
.policy ol {
    margin-top: 0.5rem;
}

/* Liens */
a {
    color: #1565C0;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Pied de page */
.site-footer {
    background: #eee;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive pour petits écrans */
@media (max-width: 600px) {
    .site-header h1 {
        font-size: 1.5rem;
    }
    .content {
        margin: 1rem;
        padding: 1rem;
    }
}
