body {
    background-color: #30171a;
    color: white;
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
}

.banner {
    background-color: #771e09;
    padding: 10px;
}

.btn-devis {
    background-color: #fe5500;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 20px;
}

.logo {
    width: 100px;
}

nav {
    background-color: black;
}

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

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

nav a {
    color: white;
    text-decoration: none;
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 400px; /* Limite la hauteur de l'image */
}

.services {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.service-content {
    width: 800px;
    border: 1px solid black;
    padding: 20px;
    text-align: left;
}

footer {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .service-content {
        width: 90%;
    }
    .logo {
        width: 80px;
    }
}