body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Couleur de fond */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4682B4; /* Couleur d'entête */
    color: white;
    text-align: center;
    padding: 10px 0;
}

.header-content {
        flex-direction: column;
        align-items: center;
    }


.title-box {
    flex: 1 1 100%;
    margin: 10px;
}

nav.main-menu {
    flex: 1 1 100%;
    text-align: center;
    margin: 10px;
}

nav.main-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #4682B4; /* Couleur des boutons */
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav.main-menu a:hover {
    background-color: #4169E1; /* Couleur des boutons - hover */
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: #fff; /* Couleur de fond des conteneurs */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    border: 2px solid #4682B4; /* Couleur des bordures des titres */
    padding: 10px;
    border-radius: 8px;
}

.home-image,
.presentation-image,
.service-image {
    text-align: center;
    margin-bottom: 20px;
}

.home-image img,
.presentation-image img,
.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.home-content,
.presentation-content,
.services-content,
.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.home-text,
.presentation-text,
.service-text,
.contact-info {
    flex: 1;
    margin: 20px 0;
}

.map {
    width: 100%;
    margin-bottom: 20px;
}

.footer-content {
    text-align: center;
    background-color: #4682B4; /* Couleur de fond du pied de page */
    color: white;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Styles généraux inchangés */

/* Media Queries pour les téléphones */
@media only screen and (max-width: 600px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .main-menu {
        margin-top: 60px; /* Espacement du menu par rapport au titre */
    }
}
