.container-meet {
    background-color: rgba(50, 50, 50, 0.05); /* Light orange with 4% opacity */
    padding:20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    justify-content: center;
    max-width: 800px;
    margin: auto;
}
.team-member {
    text-align: center;
}
.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0f0f0;
}
.name {
    font-weight: bold;
    margin-top: 10px;
}
.role {
    font-size: 14px;
    color: gray;
}