/* FAQ页面英文版特定样式调整 */

/* Section 1 标题 - "Common Questions" 不换行，加长文字框 */
html[lang="en"] .section-1-title {
    white-space: nowrap !important; /* 不换行 */
    line-height: 1.2 !important;
    width: 800px !important; /* 增加宽度以容纳 "Common Questions" */
    height: 120px !important; /* 保持单行高度 */
    overflow: visible !important;
    display: flex !important;
    align-items: center !important; /* 垂直居中 */
}

@media screen and (max-width: 1920px) {
    html[lang="en"] .section-1-title {
        white-space: nowrap !important;
        line-height: 1.2 !important;
        width: 41.67vw !important; /* 800/1920 */
        height: 6.25vw !important; /* 120/1920 */
        overflow: visible !important;
        display: flex !important;
        align-items: center !important;
    }
}

