Landing Page Template: Help with updating CSS
Happy Friday, fellow community members!
I'm setting up a new workspace for one of our brands, which includes a guided landing page template. I've copied the code from an existing template in our default workspace and updated all the relevant items for this other brand (including the CSS stylesheet). However, there is one item that I cannot figure out how/where to update and I am hoping that someone can point me in the right direction (for context, I have no CSS/HTML training but can figure out where to update items in existing code).
In the footer of this landing page, we have a version of our logo that I would like to update:

While this element has an ID=FooterLogo and is part of {FooterSection}, it doesn't look like it's linked to anywhere in the overall HTML (nor the stylesheet) - it's part of the meta class information at the top of the page: <meta class="mktoBoolean" id="FooterSection" mktoName="Footer Section" default="true" false_value="none" true_value="block" false_value_name="Hide" true_value_name="Show">
However, looking closer at the HTML for this section, I was able to change the color of that icon (see bold text in code below):

Below is the HTML for that section and I think that the "path d=" information is building the icon. If I'm correct, does anyone know how to update that code? I need the icon to look like this:
If that's really complicated, how can I adjust the CSS in that section to link to a logo image in the Design Studio?
<div class="pb-3 pb-md-0 col-md-1 mktoText text-center text-md-left" id="FooterLogo" mktoName="Footer Logo">
<svg class="ml-md-0 mx-auto" width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" style="border-radius: 50%;"><rect width="48" height="48" rx="2" fill="#3299FF"></rect><path d="M25.808 25.11c-.6.06-1.5.422-2.16 1.263-2.283 3.003-6.066 8.048-6.066 8.048-.6 1.022 0 1.923.6 1.923h5.825c.6 0 1.14-.78 1.32-1.08l8.227-10.272c.06.06-6.845 0-7.746.12zM25.808 23.37c-.6-.06-1.5-.42-2.16-1.262-2.283-3.003-6.066-8.53-6.066-8.53-.6-1.02 0-1.92.6-1.92h5.825c.6 0 1.14.78 1.32 1.08l8.227 10.752c.06-.06-6.845-.06-7.746-.12z" fill="#fff"></path></svg>
</div>
Happy to provide more of the HTML if needed and I appreciate any help/direction anyone might have.
Many thanks in advance 😀
Michelle