git .team-card {
    border: none;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
}

.team-image {
    width:100%;
    aspect-ratio:3/4;
    height:auto;
    object-fit: cover;
    display:block;
    filter: grayscale(35%);
    transition: all 0.5s ease;
    border-radius: 16px 16px 0 0;
}

.team-card:hover .team-image {
    filter: grayscale(0%);
}

.role-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: #e9ecef;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #333232;
    font-size:small;
}

.section-title {
    font-size: 2.5rem;
}

h3{
    font-size:1.35rem;
}