/* Team Section Styles - Simplified */
.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0px 0px 100px 0px;
}

.team-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-card-wrapper {
    width: 100%;
    max-width: 350px;
    height: 450px;
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

.team-card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #1d3f75;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-person-photo {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.team-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.team-card-wrapper:hover .team-person-photo img {
    transform: scale(1.05);
}

.team-person-info {
    width: 100%;
    background-color: #1d3f75;
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-person-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.team-person-title {
    font-size: 16px;
    color: #fbaf3f;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}