﻿.footer {
    background-color: var(--color-navbar-bg) !important;
    color: var(--color-dropdown-bg) !important;
    padding: 30px;
    padding-bottom: 10px;
    margin-bottom: 0px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.link {
    color: var(--color-text-white) !important;
    font-size: 9px !important;
    font-family: 'Roboto', sans-serif !important;
    text-align: center;
    text-decoration: none;
}

    .link:hover {
        color: var(--color-text-white-hvr) !important;
    }

.footer-copyright {
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .link { font-size: 14px; }
}