How can I align the form and the Privacy Policy (Footer Menu) to the center?

I think I have previously adjusted the code to move the footer menu to the left, but I’m not sure how to bring it back to center.

Link to store

www.blackspotboutique.com

Put this at the end of the section-footer.css file

.footer-block--newsletter > .footer-block__details-content{
display:none;
}

In base.css on line 1059

.grid--4-col-tablet .grid__item {
width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4); // change 25 to 100%
}

And to get the Privacy policy centered on mobile, I believe you have some styles in your theme.liquid on line 762, it should look like this

.list-menu__item {
display: flex;
align-items: center;
justify-content: center;// ADD THIS
line-height: calc(1 + 0.3 / var(--font-body-scale));
}

Thank you! I tried the first 2 but they didn’t work. Also there is no line 762 on my theme.liquid.

I am wanting both centered on desktop and the privacy policy centered on mobile.

Thanks again.