        body { font-family: 'Inter', sans-serif; }
        
        @keyframes floatUp {
            0% { transform: translateY(0) scale(1); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-120vh) scale(1.2); opacity: 0; }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translate3d(0, 20px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .text-glow {
            text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
        }

        .lantern {
            position: absolute;
            bottom: -10%;
            pointer-events: none;
            z-index: 5;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
            opacity: 0;
        }

        .faq-item.active .faq-content {
            max-height: 200px;
            opacity: 1;
            margin-bottom: 1.5rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: #fbbf24;
            border-color: #fbbf24;
        }

        .faq-item.active .faq-question {
            color: #fbbf24;
        }

        .mobile-menu {
            display: none;
        }

        .mobile-menu.active {
            display: flex;
        }