    /* Modern Footer Styles */

    footer {
        width: 100% !important;
        background: #ffffff !important;
        border-top: 1px solid #e2e8f0 !important;
        margin-top: 60px !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 40px 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    /* Brand Section */
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 5px;
    }

    .footer-logo img {
        height: 42px;
        width: auto;
        max-width: 240px;
        object-fit: contain;
        display: block;
        filter: none;
        transition: transform 0.2s ease;
    }

    .footer-tagline {
        color: #4a5568;
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 280px;
        font-weight: 500;
    }

    /* Links Sections */
    .footer-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer-section-title {
        color: #1a202c;
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: -0.2px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        color: #4a5568;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.2s ease;
        display: inline-block;
    }

    .footer-links a:hover {
        color: #667eea;
        transform: translateX(3px);
    }

    /* Bottom Copyright & Legal Links */
    .footer-bottom {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        font-size: 0.85rem;
        color: #718096;
    }

    .footer-copyright {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .footer-legal-links {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-legal-links a {
        color: #718096;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-legal-links a:hover {
        color: #667eea;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .footer-content {
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .footer-container {
            padding: 40px 20px 25px;
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .footer-logo img {
            height: 34px;
            max-width: 180px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .footer-legal-links {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .footer-logo img {
            height: 30px;
            max-width: 160px;
        }

        .footer-copyright {
            justify-content: center;
        }

        .footer-legal-links {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
        }
    }
</style>
