/* Style général */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.about-container h1 {
    font-size: 2.5em;
    color: #333;
}

.about-container .about-content {
    display: flex;
    flex-direction: row;
}

.about-container .about-content img {
    max-width: 300px;
    margin-right: 20px;
    border-radius: 10px;
}

.about-container .about-text p {
    font-size: 1.2em;
    color: #555;
}

.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 2em;
    color: #333;
}

.team {
    display: flex;
    justify-content: space-around;
}

.team-member {
    width: 200px;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
}
