


/* ================= TEAM FIX ================= */

.team-section .team-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    justify-items: center !important;
}

.team-section .team-card {
    text-align: center !important;
    background: transparent !important;
    box-shadow: none !important;
}

.team-section .team-card img {
    width: 160px !important;
    height: 160px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

.team-section .team-card h3 {
    font-size: 18px !important;
    margin-top: 10px !important;
}

.team-section .team-card p {
    font-size: 14px !important;
}


/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

    .our-values-section .value-row,
    .our-values-section .value-row.reverse {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .our-values-section .value-image,
    .our-values-section .value-content {
        width: 100% !important;
    }

    .team-section .team-grid {
        grid-template-columns: 1fr !important;
    }
}