body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: white;
}

header {
    background-color: #000;
    color: white;
    padding: 1em;
    text-align: center;
}

header h1 {
    color: #f7ce46;
}

header .logo {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0.5em auto;
}

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

nav ul li {
    display: inline;
    margin: 0 1em;
}

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

.phone-button-container {
    text-align: center;
    margin: 1em 0;
}

.phone-button {
    background-color: #f7ce46;
    color: #000;
    padding: 1em 2em;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2em;
}

.service-item {
    background-color: #222;
    margin: 1em;
    padding: 1em;
    text-align: center;
    width: 400px; /* Modifié pour centrer les blocs */
    box-sizing: border-box;
}

.service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
}

.service-item h3 {
    color: #f7ce46;
    margin-bottom: 0.5em;
}

.service-item p {
    text-align: left;
}

.contact {
    text-align: center;
    padding: 2em;
}

.contact .address {
    margin-bottom: 1em;
}

.contact .map-container {
    margin: 1em 0;
    text-align: center;
}

footer {
    text-align: center;
    padding: 1em;
    background-color: #000;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
