.counters-sections {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    height: auto;
    /* Allow height to adjust based on content */
    margin: 0 auto;
    /* Center the section */
    text-align: center;
    background-color: white;
    padding: 2rem;
    flex-wrap: wrap;
}

.counters-boxs {
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 30%;
    min-width: 150px;
    max-width: 250px;
    margin: 1rem;
}

.counters-boxs i {
    font-size: 30px;
    position: absolute;
    top: -2rem;
    color: rgb(64, 64, 211)
}

.counters-boxs span {
    font-size: 3rem;
    color: orange;
    font-weight: bold;
}

.counters-boxs .numbers {
    font-size: 45px;
}

.para {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: green;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .counters-boxs {
        font-size: 2.5rem;
        width: 30%;
    }

    .counters-boxs i {
        font-size: 2.5rem;
    }

    .para {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .counters-boxs {
        font-size: 2rem;
        width: 100%;
        min-width: 120px;
    }

    .counters-boxs i {
        font-size: 2rem;
    }

    .counters-boxs span {
        font-size: 2rem;
    }

    .para {
        font-size: 0.9rem;
    }

    .counters-sections {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .counters-boxs {
        font-size: 1.5rem;
        width: 100%;
    }

    .counters-boxs i {
        font-size: 1.5rem;
    }

    .counters-boxs span {
        font-size: 1.5rem;
    }

    .para {
        font-size: 0.8rem;
    }

    .counters-sections {
        width: 70%;
        padding: 1rem;
    }
}