/* Généralités */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
}

header .logo h1 {
    margin: 0;
    font-size: 2rem;
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Section principale */
main {
    padding: 2rem;
    background-color: #fff;
}

h2, h3 {
    color: #333;
}

/* Section des solutions */
.solutions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.solution {
    background-color: #e2e2e2;
    padding: 1rem;
    border-radius: 8px;
    width: 30%;
    text-align: center;
}

.solution h3 a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
}

.solution p {
    font-size: 1rem;
    color: #666;
}

.solution h3 a:hover {
    color: #0073e6;
}

/* Section de l'équipe */
.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member .member-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.team-member .member-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}

