#stats {
    padding: 100px 0;
    text-align: center;
    border-radius: 0;
    background: transparent !important;
}

.stats-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.stat-box {
    flex: 0 0 calc(50% - 24px);
    padding: 40px 20px;
    background-color: var(--color_one);
    border-radius: 12px;
    text-align: center;
    min-width: 280px;
    box-sizing: border-box;
    color: white;
}

.stat-box p {
    font-size: 20px !important;
    font-family: 'Montserrat Semibold', sans-serif;
    color: white !important;
    margin-top: 8px;
    margin-bottom: 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-value {
    font-size: 64px;
    font-weight: 700;
    font-family: 'Montserrat Bold', sans-serif;
    color: white;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .stat-box {
        flex: 0 0 100%;
    }
}