/* Enhanced mobile responsiveness for WhatsApp button */
        @media (max-width: 991.98px) {
            .whatsapp-green {
                font-size: 0.875rem;
                padding: 0.75rem 1rem;
                min-height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .whatsapp-green i {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 575.98px) {
            .whatsapp-green {
                font-size: 0.75rem;
                padding: 0.625rem 0.75rem;
                min-height: 44px;
            }
            .whatsapp-green i {
                font-size: 1.125rem;
                margin-right: 0.5rem;
            }
        }
        /* WhatsApp Chat Widget Styles */
		.whatsapp-green {
            background-color: #25D366;
            color: white;
        }
        .whatsapp-widget {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            animation: pulse 2s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .whatsapp-widget:hover {
            text-decoration: none;
            color: #FFF;
            background-color: #128c7e;
            animation: none;
        }
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        @media (max-width: 767.98px) {
            .whatsapp-widget {
                width: 55px;
                height: 55px;
                font-size: 26px;
                bottom: 20px;
                right: 20px;
            }
        }