.stats-contener {
    padding: 15px 20px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 1px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    padding: 0;
}

.stat-number {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.stat-label {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-contener {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

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

    .stat-label {
        font-size: 20px;
    }
}
