/* --- Footer Styles --- */
.site-footer {
    width: 100%;
    background: #f1f5f9;
    color: #64748b;
    padding: 2rem;
    margin-top: auto; /* Pushes footer to the bottom */
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
}
.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: #3b82f6;
}