    <style>
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }

        /* Mobile Footer Styles */
        @media (max-width: 768px) {
            .mobile-footer {
                display: block !important;
                width: 100%;
                max-width: 600px;
                margin: 0 auto;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 1000;
            }

            .mobile-hamburger {
                cursor: pointer;
                padding: 15px;
                background-color: #333;
                color: white;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

            .mobile-menu-content {
                background-color: #f9f9f9;
                max-height: 80vh;
                overflow-y: auto;
                width: 100%;
            }

            .menu-section {
                border-bottom: 1px solid #ddd;
                padding: 15px;
            }

            .menu-section h3 {
                margin-bottom: 10px;
                color: #333;
                text-align: center;
            }

            .menu-links {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .menu-links a {
                display: block;
                width: 100%;
                padding: 10px;
                text-align: center;
                text-decoration: none;
                color: #333;
                border-bottom: 1px solid #eee;
                transition: background-color 0.3s ease;
            }

            .menu-links a:hover {
                background-color: #f0f0f0;
            }

            .social-icons {
                display: flex;
                justify-content: center;
                gap: 15px;
                padding: 15px;
                background-color: #f5f5f5;
            }

            .social-icons a {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .contact-info {
                text-align: center;
                padding: 15px;
                background-color: #f9f9f9;
            }
        }

        /* Desktop Hide */
        @media (min-width: 769px) {
            .mobile-footer {
                display: none !important;
            }
        }
    </style>