/* assets/css/footer.css */
footer h3,
footer h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

footer p {
    color: #cbd5e1;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #cbd5e1;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

footer .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}