/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
}
