ul {
    display: flex;
    flex-direction: column;
    justify-content: initial;
    align-items: normal;
    flex-wrap: wrap;
}



section:nth-child(4) ul {
    align-items: flex-start;
}

section:nth-child(3) ul li p{
    margin: 0;
}

@media (min-width: 921px) {

    section:nth-child(3) ul, section:nth-child(4) ul{
        flex-direction: row;
        gap: 5rem;
        flex-wrap: nowrap;
        ul{
            flex-direction: column;
            gap:1rem;
        }
        li{
            max-width: 15rem;

        }
    }
    section:nth-child(4) ul{
        justify-content: space-evenly;
    }
}
