/* Footer */
.footer {
    background-color: var(--accent-color);
    padding: 60px 0 30px;
}

.footer-title {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-color);
}