
.ue_custom_stats {
    --primary-color: #0A4DA2;
    --bg-light: #F3F6FA;
    --text-dark: #1F2937;
    
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 70px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.ue_custom_stats *,
.ue_custom_stats *::before,
.ue_custom_stats *::after {
    box-sizing: border-box;
}

.ue_custom_stats .stats-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 50px;
    letter-spacing: -0.5px;
}

.ue_custom_stats .stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ue_custom_stats .stats-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 40px 25px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 14px;
    transition: all 0.35s ease;
}

.ue_custom_stats .stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.ue_custom_stats .stats-card i {
    display: block;
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.ue_custom_stats .stats-data {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ue_custom_stats .stats-label {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}


/* Responsive */
@media (max-width: 768px) {

    .ue_custom_stats {
        padding: 30px 15px 50px;
    }

    .ue_custom_stats .stats-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .ue_custom_stats .stats-container {
        flex-direction: column;
    }

    .ue_custom_stats .stats-card {
        max-width: 100%;
        width: 100%;
    }

    .ue_custom_stats .stats-data {
        font-size: 32px;
    }

}
