/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-intro {
    display: none;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.team-card {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    width: calc(33.333% - 16px);
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
}

.team-member-photo {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.team-member-content {
    flex-grow: 1;
}

.team-member-role {
    color: #00a651;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    position: static;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    z-index: 1;
}

.team-member-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.linkedin-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    color: #000;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background-color: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .team-card {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-card {
        width: 100%;
        max-width: 320px;
    }
} 