/* Team Section - Equal Card Heights (Desktop Only) */
@media (min-width: 768px) {
    #team-section .row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    #team-section .col-lg-4,
    #team-section .col-lg-3,
    #team-section .col-md-6 {
        display: flex;
    }

    #team-section .service-card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile - Reset to normal stacking */
@media (max-width: 767px) {
    #team-section .service-card {
        min-height: auto;
    }
}