/* Réinitialisation des marges et padding par défaut */
body, h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

/* Style du bandeau en haut de la page */
.header-banner {
    background-color: #7E539C;
    color: white; /* Texte en blanc pour un bon contraste */
    padding: 15px 0;
    text-align: center;
}

/* Style du pied de page */
.footer {
    background-color: #7E539C;
    color: white; /* Texte en blanc pour un bon contraste */
    padding: 20px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Style des titres */
h1, h2, h3, h4, h5, h6 {
    color: #E5407F;
    font-family: Arial, sans-serif; /* Police par défaut, à adapter */
}

/* Style général du corps de la page */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Assure que le corps prend au moins toute la hauteur de l'écran */
    position: relative; /* Permet de positionner le pied de page correctement */
    padding-bottom: 60px; /* Espace pour éviter que le contenu ne soit caché par le pied de page */
}