footer {
    padding: 50px 0 100px 0;
    color: white !important;
    background-color: black;
    min-height: 100px;

}

.footerContainer {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 1fr);
    width: 90vw;
    max-width: 1250px;
    margin: auto;
    gap: 50px;
}

@media screen and (max-width: 768px){
.footerContainer {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto;

}
}


.footerLogoContainer .logo img {
    width: 100px!important;
    height: 100px !important;
 }

.footerLogoContainer .logo p {
     font-size: 35px;
}

.footerLogoContainer .logo {
    display: flex;
    flex-direction: column;
    align-items: start; /* Optional: centers content horizontally */
  }

.footerContainer a {
    color: white;
}



.footerLanguagesContainer h4 a {
    font-size: 35px;
    margin-bottom: 15px;
    display: block;
}

.footerLanguagesContainer a,
.footerLinksContainer a{
    font-size: 16px;
    line-height: 30px
}

ul.languagesRoutes  {
    margin-bottom: 25px;
}

.footerLinksContainer .language-toggle {
padding: 5px;
border: 1px solid white;
color: white;
border-radius: 5px;
margin-bottom: 20px;
}

.footerLinksContainer .language-option {
    color: black;
}

footer .language-dropdown.show {
    top: 50px;
    margin-top: 0;
}

