body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #fefae0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #606c38;
    color: #fefae0;
    padding: 20px 0;
    display: flex;
    justify-content: center; /* Center both the logo and nav */
    align-items: center;
    flex-direction: column; /* Stack logo and nav vertically */
}

.logo {
    text-align: center;
    margin-bottom: 10px; /* Add spacing between logo and nav */
}

.logo a {
    text-decoration: none; /* Supprime le soulignement */
    color: inherit; /* Utilise la couleur du parent (héritée) */
}

.logo a:hover {
    text-decoration: none; /* Pas de soulignement au survol */
    color: inherit; /* Pas de changement de couleur au survol */
}

header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    margin: 0;
}

nav {
    width: 100%;
    text-align: center; /* Center the nav links */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center; /* Center the nav links horizontally */
    padding: 0;
    margin: 0;
}

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


.services {
    padding: 50px 20px;
    background-color: #ffffff;
    color: #fefae0;
    text-align: left;
}

.services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2b2b2b;
}

.service-item {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fefae0;
    color: #606c38;
    border-radius: 10px;
}

.service-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 15px;
}

.service-item ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-item ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

footer {
    background-color: #606c38;
    color: #fefae0;
    text-align: center;
    padding: 20px;
    width: 100%;
}
