.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    color: #002e63;
    margin: 0;
    font-size: 18px;
}

.team-info span {
    display: block;
    margin-top: 5px;
    color: #0056b3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.team-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #002e63;
    font-size: 14px;
}

