body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

header {
    background-color: white;
    padding: 1em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-decoration: underline;
}

header .flag {
    width: 80px; /* Taille fixe pour le drapeau */
    height: auto;
    position: absolute;
    top: 1.5cm; /* Décalage de 1.5 cm du bord haut (1 cm + 0.5 cm) */
    left: 2cm; /* Décalage de 2 cm du bord gauche */
}

header .logo {
    width: 350px; /* Taille fixe pour le logo */
    height: auto;
    margin-bottom: 2em;
}

nav {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4290f5; /* Couleur bleue */
}

main {
    padding: 2em;
    text-align: center;
}

section {
    display: none;
    padding: 2em;
    margin: 2em auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    max-width: 800px;
}

section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #3c99d6; /* Couleur bleue */
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.72em; /* Réduction de 10% de la taille de la police */
    padding-top: 0.5em; /* Ajustement de la hauteur */
    padding-bottom: 0.5em; /* Ajustement de la hauteur */
}

footer p {
    margin: 5px 0;
}

/* Styles spécifiques pour la section contact */
section#contact p {
    margin: 10px 0;
    font-weight: normal;
}

section#contact p.title {
    margin-bottom: 1em;
    font-style: italic;
    font-weight: bold;
}

section#contact .email {
    color: blue;
    font-weight: bold;
}

section#contact .phone {
    font-weight: bold;
}

section#contact .underline {
    text-decoration: underline;
}

/* Styles spécifiques pour les prestations */
section#prestations ul {
    margin: 30px 0;
    padding-left: 20px;
    list-style: none;
}

section#prestations ul li {
    margin-bottom: 20px;
    font-weight: normal;
}


section#prestations .prestations-list {
    text-align: left;
    text-decoration: normal;
}


/* Justified paragraph for accueil */
.justified {
    text-align: justify;
    max-width: 600px;
    margin: 0 auto;
    font-family: Calibri, sans-serif;
}

.small-text {
    font-size: 1em;
}
