Remove text from footer

Hi, can anyone help me remove the long golden text in the footer without having to remove all .p values ?
so no p{display: none} because it will remove my footer menu headers as well :slightly_smiling_face:

https://w60880td9oml81vi-56906743879.shopifypreview.com

@Daniel19901 Please use below code in place of the existing code by replacing the previously used CSS selector “p” to hide the specific text from the footer section. Let me know whether it is helpful for you.

Updated code:

.footer__inner .footer__item-list ~ p {
    display: none;
}

Final result will be like,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.