align footer links and remove lines in Craft theme

Hi! I need help on how to align these links on my footer: the three links on top should be aligned to the left and the year and page should be aligned with the other 3 words but to the right. And I hate these grey lines. I bet I need to code this but I don’t know how - here’s a screenshot:

the link is www.joanadarq.com

thanks in advance!

@joanadarq
You want like this ?

Then add below css into your base.css file (online store->theme->asset->base.css)

.footer-block:only-child:last-child {
    text-align: left !important;
    max-width: 76rem;
    margin: 0px !important;
}
.footer__content-bottom {
    border-top: 0px !important;
    padding-top: 0px !important;
}
.footer__content-top {
    padding-bottom: 0px !important;
}

Yes, thats it but i’d like to align the year and creator too with that same menu, all in the same line! Thanks

@joanadarq
for that add below css

.footer__localization:empty+.footer__column--info {
    align-items: flex-start !important;
}
.announcement-bar__message {
    text-align: left !important;
    padding: 1rem 5rem !important;
   
}