/* Extracted from: /pages/faq/index.htm */
body, .app-container, .inner-container {
            background-color: #ffffff !important;
            font-family: 'Inter', sans-serif;
        }
        .faq-hero {
            padding: 80px 20px;
            text-align: center;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-bottom: 1px solid #e2e8f0;
        }
        .faq-hero h1 { font-size: 2.5rem; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
        .faq-hero p { color: #64748b; font-size: 1.1rem; }

        .faq-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .faq-group { margin-bottom: 40px; }
        .faq-group h2 { 
            font-size: 1.5rem; 
            font-weight: 700; 
            color: #1e293b; 
            margin-bottom: 20px; 
            padding-bottom: 10px; 
            border-bottom: 2px solid #e64a19;
            display: inline-block;
        }
        .faq-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-card:hover { border-color: #e64a19; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            color: #1e293b;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s;
        }
        .faq-card.active .faq-question { color: #e64a19; }
        
        .faq-answer {
            display: none;
            padding: 0 20px 20px;
            color: #64748b;
            line-height: 1.6;
            animation: slideDown 0.3s ease;
        }
        .faq-card.active .faq-answer { display: block; }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
