body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #6a7450;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.logo img {
    max-width: 150px;
    border-radius: 10px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.button-services {
    display: inline-block;
    padding: 10px 20px; /* Ajustez le padding pour un meilleur espacement */
    font-size: 16px; /* Taille de la police */
    text-align: center;
    border-radius: 25px; /* Coins arrondis */
    background-color: #6a7450; /* Couleur de fond */
    color: white; /* Couleur du texte */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Ajout de transitions */
    margin: 10px 0; /* Marge pour espacer les boutons */
}

.button-services:hover {
    background-color: #5a6340; /* Couleur de fond au survol */
    transform: scale(1.05); /* Agrandissement au survol */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Ombre au survol */
}

main {
    padding: 20px;
}

h1 {
    color: #6a7450;
    text-align: center;
}

.service-section {
    margin: 40px 0;
}

.service-section h2 {
    color: #6a7450;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation sur le survol */
}

.service-box:hover {
    transform: scale(1.05); /* Agrandissement au survol */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Ombre plus prononcée au survol */
}

.service-image {
    width: 100%;
    height: 200px; /* Hauteur fixe pour toutes les images */
    object-fit: cover; /* Pour garder le ratio d'aspect */
    border-radius: 10px; /* Coins arrondis */
}

.service-box h3 {
    color: #6a7450;
}

footer {
    text-align: center;
    padding: 10px;
    background: #6a7450;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}