.footer h5 {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    font-weight: 600;
}

.footer a {
    color: var(--neutral-dark);
    transition: color 0.2s ease-in-out;
}

.footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer .flag-icon {
    width: 20px;
    height: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.footer .social-icons a {
    margin-top: 0;
    margin-right: 15px;
     color: var(--neutral-dark);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .social-icons a:last-child {
    margin-right: 0;
}

.footer .social-icons i {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover,
.footer .social-icons i:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.footer .dropdown-menu {
    min-width: 150px;
}

.footer .language-dropdown:hover,
.footer .language-dropdown:active,
.footer .language-dropdown:focus {
    color: var(--primary)  !important;
    background-color: var(--background-white) !important;
    border-color: var(----border-on-footer) !important;
}

.footer .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease
}

.footer .dropdown-item:hover,
.footer .dropdown-item:active,
.footer .dropdown-item:focus {
    color: var(--tertiary)  !important;
    background-color: var(--background-accent) !important;
}

.footer .list-inline-item {
    margin-right: 1rem;
}

.footer .list-inline-item:last-child {
    margin-right: 0;
}