
.team-section {
    padding: 0px 0;
    text-align: center;
}


.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
}

.team-member {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.member-photo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.member-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.member-role {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 10px;
}

.member-info {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}