.stats-container {
    margin-top: 4rem;
}

.stat-card {
    background: #1e3a8a;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
}

.stat-card.light {
    background: white;
    color: #1e3a8a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number .highlight {
    color: #fbbf24;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.stat-prefix {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {




    .stat-card {
        padding: 2.5rem 1.5rem;
        height: 240px;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

}

@media (max-width: 576px) {

    .stat-number {
        font-size: 3rem;
    }

    .stat-card {
        height: 220px;
        padding: 2rem 1rem;
    }
}