/* Team Section */
.team-section {
    padding: 3rem 0;
}

.team-heading {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--brand-text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    justify-content: center;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(52, 112, 236, 0.09);
    padding: 1.5rem;
    text-align: center;
    border: none;
    transition: box-shadow 0.18s, transform 0.15s;
    width: 100%;
    max-width: 280px;
}

.team-card:hover {
    box-shadow: 0 8px 32px rgba(52, 112, 236, 0.15);
    transform: translateY(-2px);
}

.team-image {
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--brand-text);
}

.team-title {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-card {
        max-width: 320px;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
        max-width: 25%;
    }
}