.site-footer {
    margin-top: 6rem;
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.disclaimer {
    background: transparent;
    border: none;
    padding: 1.5rem 0 0;
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
}

.disclaimer h3 {
    display: none;
}

.disclaimer p {
    color: var(--text-tertiary);
    font-size: 0.6875rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    text-align: center;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.disclaimer strong {
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-info p {
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-info a:hover {
    color: var(--purple);
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 4rem;
        padding: 1.5rem 0 1rem;
    }

    .disclaimer p {
        font-size: 0.625rem;
        line-height: 1.4;
    }

    .footer-info p {
        font-size: 0.75rem;
    }
}
