
/* Réinitialisation des marges et des remplissages */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Style général du corps de la page */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Style du conteneur principal */
.container {
    width: 80%;
    margin-top: 10em;
    margin-left:auto;
    margin-right:auto;
    overflow: hidden;
}

/* Style de la section d'accueil */
#accueil {
    background-color: #0077b6;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

#accueil h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Style de la section des services */
#services {
    padding: 2rem 0;
    background-color: #fff;
}

#services h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0077b6;
}

#services p {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #0077b6;
}

/* Style de la section de contact */
#contact {
    padding: 2rem 0;
    background-color: #0077b6;
    color: #fff;
}

#contact h2, #contact h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

#contact p {
    margin-bottom: 1rem;
    text-align: center;
}

#contact a {
    color: #fff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Style pour les liens */
a {
    color: #0077b6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}