  .footer {
            background: linear-gradient(135deg, #12154a, #12154a);
            color: white;
            padding: 60px 20px 30px 20px;
        }

        .footer-disclaimer {
            font-size: 0.9rem;
        }

        .footer-nav a {
            display: inline-block;
            margin-right: 15px;
            color: white;
            text-decoration: none;
        }

        .footer-nav a:hover {
            text-decoration: underline;
        }

        .footer-form input {
            margin-bottom: 10px;
        }

        .footer-logos img {
            height: 30px;
            margin-right: 10px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            font-size: 0.85rem;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            flex-direction: column;
            align-items: self-end;
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
            padding: 0.1rem 0.5rem;
        }

        @media (max-width: 767.98px) {
            .footer-nav {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-nav a {
                padding-left: 0;
            }
        }

        .footer-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
            margin-top: 1rem;
        }

        .footer-logos a {
            display: inline-block;
        }

        .footer-logo-img {
            height: 48px;
            max-width: 100%;
            transition: transform 0.2s ease;
        }

        .footer-logo-img:hover {
            transform: scale(1.05);
        }

        @media (max-width: 767px) {
            .footer-logos {
                flex-direction: column;
            }
        }