/* Reset CSS de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Gris foncé pour le texte principal */
    background-color: #f4f4f4; /* Couleur de fond claire pour équilibrer */
}

/* En-tête */
header {
    background-color: #333333; /* Gris foncé pour l'en-tête */
    color: #ffffff;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    vertical-align: middle;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #606c76; /* Bleu/gris pour la section d'accueil */
    color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #d74d40; /* Rouge pour les boutons */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Section des services */
#services {
    padding: 50px 20px;
    background-color: #ffffff;
}

#services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333333; /* Gris foncé */
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service h3 {
    margin-bottom: 10px;
    color: #d74d40; /* Rouge pour les titres de services */
}

/* Section à propos */
#about {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333333;
}

/* Section contact */
#contact {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333333;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact label {
    margin-top: 10px;
    font-weight: bold;
}

#contact input,
#contact textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact button {
    margin-top: 20px;
    padding: 10px;
    background-color: #d74d40; /* Rouge pour le bouton de contact */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Pied de page */
footer {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

footer p {
    font-size: 0.9rem;
}
