 /* Fact Counter List - Consistent Sizing */
.fact-counter-list {
    display: flex;
    flex-wrap: nowrap;  /* Keep in row, don't wrap */
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    overflow-x: auto;  /* Scroll if needed on small screens */
}

.fact-counter-item {
    flex: 1 1 0;  /* Equal width distribution */
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px !important;
    text-align: center;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.fact-counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fact-counter-item h2 {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #20296E !important;
    margin: 0 0 8px 0 !important;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact-counter-item h2 .counter {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.fact-counter-item p {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #5E646A !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsive - KEEP IN ROW */
@media (max-width: 768px) {
    .fact-counter-list {
        gap: 12px;
        flex-wrap: nowrap;  /* Still row layout */
    }
    
    .fact-counter-item {
        flex: 1 1 0;
        min-width: 120px;
        padding: 18px 12px !important;
    }
    
    .fact-counter-item h2 {
        font-size: 32px !important;
        min-height: 40px;
    }
    
    .fact-counter-item p {
        font-size: 12px !important;
        min-height: 32px;
    }
}

@media (max-width: 480px) {
    .fact-counter-list {
        gap: 8px;
        flex-wrap: nowrap;  /* Row layout even on small screens */
    }
    
    .fact-counter-item {
        min-width: 100px;
        padding: 15px 8px !important;
    }
    
    .fact-counter-item h2 {
        font-size: 28px !important;
        min-height: 36px;
    }
    
    .fact-counter-item p {
        font-size: 11px !important;
        min-height: 30px;
    }
}

