.team-section {
    padding: 50px;
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-card {
    background: #ffffff;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    margin: 5px 0;
}

.team-card p {
    color: gray;
    font-size: 14px;
}
