/* Styles de base */
body {
    background-color: #30171a;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-color: black;
    padding: 20px 0;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

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

/* Menu de navigation */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

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

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

nav ul li a:hover {
    text-decoration: underline;
}

/* Bannière avec le bouton Devis gratuit */
.banner {
    background-color: #771e09;
    padding: 15px 0;
}

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

.btn-devis:hover {
    background-color: #e04900;
}

/* Contenu principal */
main img {
    width: 1600px;
    height: 400px;
    display: block;
    margin: 20px auto;
}

.services, .contact {
    margin: 0 auto;
    width: 800px;
    border: 2px solid black;
    padding: 20px;
    background-color: white;
    color: black;
    text-align: left;
}

.services p, .contact p {
    line-height: 1.5;
}

.services ul, .contact ul {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 20px;
}

/* Styles pour le footer */
footer {
    margin-top: 20px;
    background-color: black;
    padding: 10px;
    color: white;
}

footer a {
    color: #fe5500;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media screen and (max-width: 800px) {
    .services, .contact {
        width: 90%;
    }

    main img {
        width: 100%;
        height: auto;
    }
}
