.soma-standard {
    box-sizing: border-box;
    background-color: #F6F6F6;
    width: 100vw;
    margin: auto;
    padding: 60px;
    text-align: left;
}

.standard-label {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.022em;
    line-height: 150%;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #131527;
}

.standard-title {
    font-size: 36px;
    line-height: 120%;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #131527;
}

.standard-text {
    font-size: 16px;
    color: #000000;
    line-height: 150%;
    letter-spacing: -0.022em;
    margin-bottom: 15px;
    font-weight: 500;
}

.standard-proof {
    margin-top: 70px;
    margin-bottom: 0px;
}

.stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-box {
    width: 22%;
    text-align: center;
}

.stat-number {
    font-size: 96px;
    color: #0D7C68;
    letter-spacing: -0.022em;
    line-height: 150%;
    /* green tone like image */
    margin: 0;
}

.stat-label {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    letter-spacing: -0.022em;
    line-height: 150%;
}

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

    .stat-box {
        width: 100%;
    }
    .standard-title {
        font-size: 26px;
    }
}

@media (max-width: 425px) {
    .soma-standard {
        padding: 20px;
    }
}