/* equipe.css */

#equipe {
    padding: 50px 0;
    background-color: #ffffff;
}

#equipe h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    margin: 20px;
}

.profile-icon, .profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    font-size: 1.1rem;
    color: #777;
}
