/* ... (Avvalgi javobdagi barcha CSS kodlari) ... */
/* Umumiy uslublar va shriftni o'rnatish */
/* body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7f7f7;
    color: #333;
} */

/* Asosiy bo'lim uslublari */
.company-stats {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    width: 100%;
    max-width: 1200px;

}

/* Asosiy sarlavha */
.main-title {
    font-size: 30px;
    font-weight: 700;
    color: rgb(136, 0, 25);
    margin-bottom: 5px;
    margin-bottom: 30px;
    text-align: center;
}

/* Kichik sarlavha (taglavha) */
.subtitle {
    font-size: 0.9em;
    color: #414141;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Statistik elementlar konteyneri */
.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

/* Har bir alohida statistika elementi */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    padding: 20px 10px;
}

/* Asosiy raqamlar uslubi */
.number {
    font-size: 3.5em;
    font-weight: 700;
    color: #123;
    margin-bottom: 5px;
    line-height: 1.1;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    width: 75%;
    /* margin-left: auto;
    margin-right: auto; */
    text-align: center;
}

/* Ta'rif/yozuv uslubi */
.label {
    font-size: 0.9em;
    color: #403f3f;
    margin-top: 15px;
    line-height: 1.4;
    padding: 0 10px;
    text-align: center;
}

/* Mobil qurilmalar uchun moslashuvchanlik (responsive) */
@media (max-width: 768px) {
    .main-title {
        font-size: 2em;
    }

    .number {
        font-size: 3em;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        min-width: 100%;
    }
}
