/* Style global */
body {
    background-color: #30171a;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

/* Style de la bannière */
.banner {
    background-color: #771e09;
    text-align: center;
    padding: 10px 0;
}

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

/* Style de l'en-tête */
header {
    background-color: black;
    text-align: center;
    padding: 20px;
}

h1 {
    font-weight: bold;
    color: white;
}

.logo {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

/* Style de la navigation */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

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

/* Style du contenu principal */
main {
    text-align: center;
}

.services {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid black;
    text-align: left;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    width: 48%; /* Ajuste la largeur pour s'adapter à deux colonnes */
    margin-bottom: 10px;
}

/* Style du pied de page */
footer {
    text-align: center;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}