  body {
            font-family: 'Inter', sans-serif;
        }
        .glassmorphism {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(209, 213, 219, 0.3);
        }
        .dark .glassmorphism {
            background: #2531412e;
            backdrop-filter: blur(2px) saturate(180%);
            -webkit-backdrop-filter: blur(2px) saturate(180%);
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid rgba(55, 65, 81, 0.3);
        }

        :root {
            --jusneural-green-rgb: 34, 197, 94;
        }

        .new-footer-style {
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            background: rgba(255, 255, 255, 0.75) radial-gradient(circle, rgba(var(--jusneural-green-rgb), 0.25) 0%, rgba(var(--jusneural-green-rgb), 0) 70%);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 17px;
            color: #374151;
            position: relative;
            z-index: 10;
            width: calc(100% - 3rem);
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding: 2rem 1.5rem;
        }

        .footer-nav-links .footer-link {
            color: #16A34A;
            transition: color 0.3s ease;
            font-weight: 500;
            padding: 0.25rem 0.5rem;
            position: relative;
            text-decoration: none;
        }

        .footer-nav-links .footer-link:hover {
            color: #15803D;
        }

        .dark .footer-nav-links .footer-link {
            color: white;
        }

        .dark .footer-nav-links .footer-link:hover {
            color: #E5E7EB;
        }

        .footer-nav-links .footer-link::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1.5px;
            background-color: rgb(var(--jusneural-green-rgb));
            transition: width 0.3s ease-out;
        }

        .footer-nav-links .footer-link:hover::after {
            width: 100%;
        }

        .footer-social-icons .social-icon img {
            display: block;
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
            opacity: 0.75;
        }

        .footer-social-icons .social-icon:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
            opacity: 1;
        }

        .footer-separator {
            border-color: rgba(0, 0, 0, 0.12);
            border-top-width: 1px;
        }

        .new-footer-style .footer-text {
            color: #4B5563;
            font-size: 0.75rem;
            line-height: 1rem;
        }

        #footer-logo {
            max-height: 1.5rem;
        }

        .dark .new-footer-style {
            background: radial-gradient(circle, rgb(10 255 108 / 50%) 0%, rgba(10, 255, 108, 0) 80%);
            border-color: rgba(255, 255, 255, 0.125);
            color: #ddd;
        }

        .dark .footer-social-icons .social-icon img {
            opacity: 0.7;
        }

        .dark .footer-social-icons .social-icon:hover img {
            opacity: 1;
        }

        .dark .footer-separator {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .dark .new-footer-style .footer-text {
            color: #ddd;
        }
        
        .footer-bottom-texts {
            text-align: center;
        }
        .footer-bottom-texts > p {
            margin-bottom: 0.5rem;
        }
         .footer-bottom-texts > p:last-child {
            margin-bottom: 0;
        }

           #whatsapp-float-button {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        background-color: #efefef;
        border-radius: 50px;
        text-align: center;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      #whatsapp-float-button:hover {
        transform: scale(1.1);
        box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
      }

      #whatsapp-float-button img {
        width: 49px;
        height: 49px;
      }

      @media (max-width: 768px) {
        #whatsapp-float-button {
          width: 50px;
          height: 50px;
          bottom: 20px;
          right: 20px;
        }
        #whatsapp-float-button img {
          width: 42px;
          height: 42px;
        }
      }