:root {
    --primary-color: #4a90e2;
    --secondary-color: #f39c12;
    --footer-text: #fff;
}

footer {
    background: var(--primary-color);
    color: var(--footer-text);
    padding: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 3rem;
}

footer p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

footer a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}