.site-footer-general {
        background: #000000ff;
        padding: 1.5rem 0;
        margin-top: auto;
    }

    .footer-text {
        color: #818181ff;
        font-size: 0.9rem;
    }

    .footer-text strong {
        color: #ffffff;
    }

    .footer-links {
        display: flex;
        gap: 1.5rem;
        justify-content: flex-end;
    }

    .footer-links a {
        color: #8b92a7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #0d6efd;
    }

    @media (max-width: 767.98px) {
        .footer-links {
            justify-content: center;
        }

        .footer-text {
            text-align: center;
        }
    }