
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .glass-nav {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        body {
            transition: background-color 0.3s ease, color 0.2s ease;
        }
        .hover-scale {
            transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .hover-scale:hover {
            transform: scale(1.02);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -12px rgba(0,0,0,0.15);
        }
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        .animate-shimmer {
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
        }
        .active-nav-link {
            position: relative;
        }
        .active-nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #0d631b;
            border-radius: 2px;
            animation: slideIn 0.3s ease-out;
        }
        @keyframes slideIn {
            from { width: 0; opacity: 0; }
            to { width: 100%; opacity: 1; }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .bento-grid-mobile {
                grid-template-columns: 1fr;
            }
        }
        .mobile-menu-active {
            max-height: 500px;
            opacity: 1;
            transition: max-height 0.4s ease, opacity 0.3s ease;
        }
        .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

         .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Glass container effect for step numbers (optional accent) */
        .glass-step {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            border-radius: 9999px;
        }

        /* Hover glow effect */
        .group:hover .material-symbols-outlined {
            font-variation-settings: 'FILL' 1;
        }

          .animation-delay-500 { animation-delay: 0.5s; }
    .animation-delay-1000 { animation-delay: 1s; }
    .animation-delay-1500 { animation-delay: 1.5s; }

    @keyframes ping-slow {
        0% { transform: scale(1); opacity: 0.8; }
        75%, 100% { transform: scale(2); opacity: 0; }
    }
    .animate-ping {
        animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

    .stat-number {
        transition: all 0.5s ease;
    }


    .footer-item {
        transition: all 0.3s ease;
    }

    .hover-glow:hover {
        text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
        transform: translateX(5px);
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    .whatsapp-float:hover {
        animation: float 0.5s ease-in-out;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .footer-glass {
            padding: 1.5rem;
        }
    }

    .nav-link, .nav-link-mobile {
        transition: all 0.2s ease;
    }

    #mobileMenu {
        transition: max-height 0.3s ease-out, opacity 0.2s ease;
        opacity: 0;
    }

    #mobileMenu:not([style*="max-height: 0px"]) {
        opacity: 1;
    }

    /* Custom scrollbar for mobile menu */
    #mobileMenu::-webkit-scrollbar {
        width: 4px;
    }

    #mobileMenu::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 10px;
    }

    #mobileMenu::-webkit-scrollbar-thumb {
        background: #0d631b;
        border-radius: 10px;
    }

     .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    .faq-answer {
        transition: max-height 0.3s ease-out;
    }

    .scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
    .stat-number { transition: all 0.3s ease; }
    .hover-lift:hover { transform: translateY(-6px); transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1); }

