.numbers-circle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.numbers-circle {
    background: #35A9E01A;
    border-radius: 50%;
    width: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 32px 16px;
    margin: 0 auto;
}

.numbers-circle .number {
    color: #35A9E0;
    text-align: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 118%;
    letter-spacing: -3.5px;
    margin-bottom: 0px;
    display: block;
}

.numbers-circle .label {
    color: #11244A;
    text-align: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 127%;
    letter-spacing: -0.15px;
    display: block;
}

/* Responsive styles */
@media (max-width: 900px) {
    .numbers-circle {
        width: 160px;
        height: 160px;
        padding: 24px 10px;
    }
    .numbers-circle .number {
        font-size: 36px;
        letter-spacing: -2px;
    }
    .numbers-circle .label {
        font-size: 13px;
    }
    .numbers-circle-container {
        gap: 24px;
    }
}
