.counter-boxes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .counter-box {
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        border: 1px solid;
        transition: 0.3s;
    }

    

    .counter-box h3 {
        margin-bottom: 0.3rem;
        font-weight: 600;
        font-size: 1.25rem;
    }

    .counter-box p {
        font-size: 2.4rem;
        font-weight: 800;
    }