.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li a {
    color: var(--color-grey);
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--color-brand-blue);
}

@media (max-width: 768px) {
    .footer-menu-title {
        text-align: center;
    }

    .footer-menu {
        text-align: center;
    }

    .footer-menu li {
        margin-bottom: 1.5rem;
    }
}