.team-header {
    padding: 120px 50px 60px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.team-grid {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.team-category {
    margin-bottom: 50px;
}

.team-category h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 15px;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-member .social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-member .social-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .team-header {
        padding: 100px 20px 40px;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
} 