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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 60px; /* Ajuster l'espace pour la nouvelle hauteur du header */
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0; /* Réduire la hauteur du header */
    text-align: center;
    position: fixed; /* Fixer le header en haut de la page */
    top: 0;
    left: 0;
    width: 100%; /* Faire en sorte que le header prenne toute la largeur */
    z-index: 1000; /* Placer le header au-dessus des autres éléments */
}

header h1 {
    margin: 0;
    font-size: 1.5rem; /* Ajuster la taille du texte pour correspondre à la hauteur réduite */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.section {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: justify; /* Justifier le texte dans toutes les sections */
}

h2 {
    margin-bottom: 20px;
    text-align: left; /* Conserver les titres alignés à gauche */
}

/* Disposition en flex pour images à droite du texte */
.service-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.service-feature .text {
    flex: 1;
    margin-right: 20px;
}

.service-feature img {
    max-width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Disposition des images en ligne */
.image-row {
    display: flex;
    gap: 10px;
}

.image-row img {
    max-width: 200px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Limiter la hauteur de l'image "travaux en cours" à 100px */
.service-feature img[alt="Panneau travaux en cours"] {
    height: 100px;
    width: auto;
    object-fit: contain;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    margin-top: 20px;
}

footer p, footer a {
    margin: 0;
    color: #fff;
    text-decoration: none;
}
