
        :root {
            --primary-blue: #004a99;
            --accent-orange: #e67e22;
            --text-dark: #2c3e50;
            --bg-light: #f8fafc;
        }

        .faq-section {
            font-family: 'Segoe UI', Arial, sans-serif;
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
            color: var(--text-dark);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-header h2 {
            font-size: 2em;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .faq-header .line {
            width: 50px;
            height: 3px;
            background: var(--accent-orange);
            margin: 0 auto;
        }

        /* 手风琴条目样式 */
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
        }

        /* 隐藏原生 Checkbox */
        .faq-input {
            display: none;
        }

        /* 问题区域（Label） */
        .faq-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            font-weight: 600;
            background: #fff;
            cursor: pointer;
            transition: background 0.3s;
        }

        .faq-label:hover {
            background: var(--bg-light);
        }

        /* 箭头符号 */
        .faq-label::after {
            content: '+';
            font-size: 1.5em;
            color: var(--primary-blue);
            transition: transform 0.3s;
        }

        /* 内容区域 */
        .faq-content {
            max-height: 0;
            padding: 0 20px;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
            background: #fff;
            color: #64748b;
            line-height: 1.6;
        }

        /* 选中状态（展开） */
        /* 注意：这里使用 radio 保证一次只能打开一个 */
        .faq-input:checked + .faq-label {
            color: var(--primary-blue);
            border-bottom: 1px solid #f1f5f9;
        }

        .faq-input:checked + .faq-label::after {
            content: '−';
            transform: rotate(180deg);
        }

        .faq-input:checked ~ .faq-content {
            max-height: 300px; /* 足够容纳文本的高度 */
            padding: 20px;
        }

        .highlight {
            color: var(--accent-orange);
            font-weight: bold;
        }
    