
    .site-footer {
        padding: 3rem 2rem;
        margin-top: auto;
        border-top: 1px solid var(--border-light, rgba(63, 63, 70, 0.5));
        background: transparent;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-content p {
        color: var(--text-muted);
        font-size: 0.875rem;
        margin: 0;
    }

    .footer-links {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-links a:hover {
        color: var(--primary-red, #ef4444);
    }

    .footer-links .divider {
        color: var(--border-light, rgba(63, 63, 70, 0.3));
        font-size: 0.75rem;
    }

    @media (max-width: 768px) {
        .site-footer {
            padding: 2rem 1rem;
        }
    }
