/* Style général pour le site */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f0f4f0; /* Vert clair */
    color: #333;
}

/* Style pour le header */
header {
    text-align: center;
    padding: 20px;
    background-color: #388e3c; /* Vert foncé */
    color: white;
}

header img {
    max-width: 100px;
    margin-bottom: 10px;
}

header h1 {
    margin: 10px 0 5px;
}

header p {
    margin: 0;
    font-size: 18px;
}

/* Style pour la navigation */
nav {
    display: flex;
    justify-content: center;
    background-color: #2e7d32; /* Vert sombre */
    padding: 10px;
}

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

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #1b5e20; /* Vert encore plus sombre */
}

/* Style pour le bouton DEMANDE DE DEVIS */
.btn-devis {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    background-color: #689f38; /* Vert vif */
    color: white;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    width: 80%;
    max-width: 300px;
}

.btn-devis:hover {
    background-color: #33691e; /* Vert foncé */
}

/* Style pour le contenu principal */
main {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
}

main .text {
    margin-bottom: 20px;
}

/* Style pour les images en bas */
.bottom-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

/* Style pour le footer */
footer {
    text-align: center;
    background-color: #388e3c; /* Vert foncé */
    color: white;
    padding: 10px 0;
    margin-top: 20px;
}

/* Style responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .btn-devis {
        width: 100%;
        max-width: none;
    }
}
