/* Footer Styles */
.site-footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links-row a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-row a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

.footer-disclaimer {
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.8rem;
    max-width: 600px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
    }
}