#team-section {
    padding: 80px 20px;
    text-align: center;
}



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

.team-member {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 15px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.member-info {
    padding: 25px 20px;
}

.member-info h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 5px;
}

.position {
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 16px;
}

.description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
