/* Stats Grid Component */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Stat Item */
.stat-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}

/* Stat Number */
.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #003262;
    line-height: 1.2;
    margin-bottom: 12px
}

/* Stat Label */
.stat-label {
    font-size: 15px;
    font-weight: 400;
    color: #003262;
    line-height: 1.4
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        gap: 16px
    }

    .stat-item {
        padding: 30px 20px;
        min-width: 180px;
    }

    .stat-number {
        font-size: 40px
    }

    .stat-label {
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 12px;
        flex-direction: column;
    }

    .stat-item {
        padding: 25px 20px;
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .stat-number {
        font-size: 36px
    }

    .stat-label {
        font-size: 13px
    }
}

