/* Général */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    flex: 1;
}

h1 {
    color: #333;
    margin-bottom: 50px;
}

/* Barre de navigation */
header {
    background-color: #2a2a2a; /* Fond bleu pour le header */
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    font-size: 18px;
}

nav ul li a:hover {
    background-color: #20aadf;
    border-radius: 4px;
}

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 150px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.service i {
    font-size: 40px;
    color: #20aadf; /* Couleur bleue pour les icônes */
    margin-bottom: 10px;
}

.service span {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.service:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #2a2a2a; /* Fond bleu pour le footer */
    color: white; /* Texte blanc pour le footer */
    padding: 20px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    margin-top: auto; /* Permet de placer le footer en bas de la page */
}
