   body {
            background: #ffffff;
            color: #111111;
            font-family: 'Manrope', system-ui, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            font-size: 1rem;
            font-weight: 400;
        }

        .faq-page {
            max-width: 1400px;
            margin: 100px auto;
            padding: 10px;
            display: grid;
            grid-template-columns: 25% 70%;
            gap: 5rem;
            /* align-items: start; */
        }

        /* Left Sidebar */
        .faq-sidebar {
            position: sticky;
            top: 120px;
            opacity: 0;
            transform: translateX(-40px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-sidebar.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .faq-sidebar-intro {
            font-size: 1.15rem;
            font-weight: 500;
            color: #00b140;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
        }

        .faq-sidebar-title {
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            font-weight: 800;
            color: #000000;
            margin-bottom: 2.5rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .faq-attention-box {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            text-align: center;
            animation: attentionPulse 2s infinite alternate ease-in-out;
            opacity: 0.95;
        }

        @keyframes attentionPulse {
            0% { transform: scale(1); opacity: 0.95; }
            100% { transform: scale(1.02); opacity: 1; }
        }

        .faq-attention-text {
            font-size: 1.15rem;
            color: #222222;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .faq-attention-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #00b140 0%, #006600 100%);
            color: white;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s ease;
        }

        .faq-attention-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,177,64,0.3);
        }

        /* Right - FAQ Content */
        .faq-content {
            opacity: 0;
            transform: translateX(40px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
        }

        .faq-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: #f9f9f9;
            border: 1px solid #e0e0e0;
            border-radius: 16px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-item:nth-child(1) { transition-delay: 0.3s; }
        .faq-item:nth-child(2) { transition-delay: 0.45s; }
        .faq-item:nth-child(3) { transition-delay: 0.6s; }
        .faq-item:nth-child(4) { transition-delay: 0.75s; }
        .faq-item:nth-child(5) { transition-delay: 0.9s; }
        .faq-item:nth-child(6) { transition-delay: 1.05s; }

        .faq-question {
            padding: 1.8rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.3rem;
            font-weight: 600;
            color: #000000;
            transition: background 0.4s ease, color 0.4s ease;
        }

        .faq-question:hover {
            background: #f0f0f0;
            color: #00b140;
        }

        .faq-question i {
            font-size: 1.1rem;
            color: #00b140;
            transition: transform 0.4s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 2rem 2rem;
            font-size: 1.05rem;
            color: #444444;
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s ease, padding 0.6s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust based on content */
            padding: 0 2rem 2rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .faq-page {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .faq-sidebar {
                position: static;
                top: 0;
                transform: translateY(40px);
            }

            .faq-sidebar.visible {
                transform: translateY(0);
            }

            .faq-content {
                transform: translateY(40px);
            }

            .faq-content.visible {
                transform: translateY(0);
            }
        }

        @media (max-width: 640px) {
            .faq-page {
                padding: 90px 4vw 110px;
            }

            .faq-sidebar-title {
                font-size: 2.6rem;
            }

            .faq-attention-text {
                font-size: 1.05rem;
            }

            .faq-question {
                font-size: 1.2rem;
                padding: 1.5rem 1.5rem;
            }

            .faq-answer {
                font-size: 1rem;
                padding: 0 1.5rem 1.8rem;
            }
        }