/* Mobile-specific footer styles */
        @media (max-width: 768px) {

          .main-title {
        margin-top: 20px !important; /* Add space above the container on mobile */
    }
            .footer {
                padding: 20px 15px;
            }
            
            .footer-content {
                display: flex;
                flex-direction: column;
                gap: 15px;
                max-width: 100%;
            }
            
            .footer-section {
                width: 100%;
                margin-bottom: 0;
                text-align: left;
            }

            /* Specific spacing reduction between Quick Links sections */
            .footer-section:nth-child(2) {
                margin-bottom: -17px;
            }
            
            .footer-section:nth-child(3) {
                margin-top: -10px;
            }
            
            .footer-section:nth-child(3) h4 {
                margin-bottom: 0px; /* Reduce space after empty h4 */
                height: 0;
                overflow: hidden;
            }
            
            .footer-section h4 {
                margin-bottom: 15px;
                font-size: 18px;
                color: #30b3ba;
            }
            
            .footer-section p {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 15px;
                text-align: left;
            }
            
            .footer-section ul {
                list-style: none;
                padding: 0 !important;           /* <-- HERE */
    margin: 0 !important;            /* <-- HERE */
    padding-left: 0 !important;      /* <-- HERE */
    margin-left: 0 !important;
            }
            
            .footer-section ul li {
                margin-bottom: 5px;
                font-size: 14px;
                text-align: left;
                padding-left: 0 !important;      /* <-- HERE */
    margin-left: 0 !important;       /* <-- HERE */
    list-style: none !important;  
            }

            .footer-section:nth-child(2) {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .footer-section:nth-child(2) * {
        padding-left: 0 !important;
        margin-left: 0 !important;
        text-indent: 0 !important;
    }

    /* Reduce gap between Contact Info and WeChat sections */
            .footer-section:nth-child(4) {
                margin-bottom: -30px; /* Reduce space after Contact Info */
            }
            
            .footer-section:nth-child(5) {
                margin-top: -50px; /* Reduce space before WeChat */
            }
            
            .footer-section ul li a {
                color: #ffffff;
                text-decoration: none;
                transition: color 0.3s ease;
            }
            
            .footer-section ul li a:hover {
                color: #30b3ba;
            }
            
            .highlight {
                color: #30b3ba;
                font-weight: bold;
            }
            
            .email-link {
                color: #30b3ba !important;
            }
            
            footer.nav-logos {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
                margin-top: 15px;
                flex-wrap: wrap;
            }
            
            .logo {
                height: 40px;
                width: auto;
                transition: transform 0.3s ease;
            }
            
            .logo:hover {
                transform: scale(1.1);
            }
            
            /* WeChat QR codes section */
            .footer-section div[style*="display: flex; align-items: center"] {
                justify-content: center !important;
                margin: 15px 0 !important;
            }
            
            .footer-section div[style*="display: flex; gap: 12px"] {
                justify-content: center !important;
            }
            
            /* Footer bottom */
            .footer-bottom {
                margin-top: 30px;
                padding-top: 20px;
                padding-bottom: 200px;
                border-top: 1px solid #444;
                text-align: left;
            }
            
            .footer-bottom p {
                font-size: 12px;
                color: #ccc;
                margin: 0;
            }

        }