.footer-slogan {
    font-size: 1.7vw;
    color: black;
}


.site-footer {
    background-color: #FFFE03;
    /* Match the yellow from valid styles */
    padding: 3vh;
    /* Fallback to standard fonts if custom font not loaded */
}

.site-footer p,
.site-footer h2,
.site-footer h3 {
    color: black
}








/* ======================
   Desktop Footer STYLES 
========================*/



.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-info-grid {
    display: flex;
    align-self: center;
    gap: 5vw;
}



.footer-logo {
    max-width: 90%;
    height: auto;
    display: block;
    margin-top: 4rem;
}

.footer-col-right {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
}

.footer-col-left {
    width: 40%;
    padding-right: 4rem;
}

.footer-contact h3 {
    font-size: 1.5vw;
    margin-bottom: 0;
}

.footer-contact h2 {
    font-size: 1.50vw;

}

.footer-contact a {
    font-family: 'satoshi';
    font-size: 1.05rem;
    margin-bottom: 1vw;
    display: inline-block;
}


.footer-bottom-center {
    justify-content: center;

}

.footer-bottom-center p {
    font-size: 1.5vw;
    margin-top: 1.5vh;

}






/* ====================
   MOBILE FOOTER STYLES 
======================*/

.mobile-footer {
    display: none;
    background-color: #FFFE03;
    /* Match the yellow from valid styles */
    color: black;
    /* Fallback to standard fonts if custom font not loaded */
    flex-wrap: wrap;
}



.mobile-footer-left {
    width: 50%;
    display: flex;

    align-items: center;
}

.mobile-footer-left img {
    max-width: 70%;
    height: auto;

}

.mobile-footer-right {
    width: 50%;
}

.mobile-footer-top h2 {
    width: 100%;
    text-align: start;
    font-size: 3.5vw;
}


.mobile-contact h2 {
    font-size: 2.5vw;
    color: black;
}


.mobile-contact h3 {
    font-size: 2vw;
    color: black;
    margin-bottom: 0;
}


.mobile-contact a {
    font-family: 'satoshi';
    font-size: 2.5vw;
    padding-bottom: 3vh;
    display: inline-block;
}

.mobile-bottom {

    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 2vw;
    margin-top: 2rem;
}

.footer-bottom-left {
    font-size: 2vw;
    margin-top: 1rem;
    text-align: left;
    color: black;
    width: 100%;
    text-align: center;
}



@media screen and (max-width: 768px) {
    .mobile-footer {
        display: flex;
    }

    .footer-desktop {
        display: none;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-col-left,
    .footer-col-right {
        width: 100%;
        margin-bottom: 2rem;
    }

    .footer-info-grid {
        flex-direction: column;
    }

    .footer-contacts,
    .footer-identity {
        width: 100%;
        margin-bottom: 2rem;
    }
}