.team-container {
    max-width: 900px;
    margin: 100px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
h2 {
    text-align: center;
    color: rgb(117, 56, 122);
}
.team-member {
    background-color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.team-member h3 {
    color: rgb(117, 56, 122);
    font-weight: 700;

}
.member-info {
    flex: 1;
    text-align: left;
}
.member-image {
    max-width: 150px;
    height: auto;
    margin-left: 20px;
    border-radius: 50%;
}
