.footer-nav {
    margin-top: 20px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
