/* ========================================
   全站正文字号与首页一致（26px）
   导航、页脚保持原尺寸
   ======================================== */

body {
    font-size: 1.625rem;   /* 26px，与首页 .ai-home-page 一致 */
    line-height: 1.7;
    color: #333;
}

/* 导航区域保持原字号，避免菜单过大 */
.header-container-wrapper {
    font-size: 14px;
}

/* 页脚、底部栏保持紧凑字号 */
footer,
.bottom {
    font-size: 16px;
}

/* 页脚 Get Started 区块：仅加大引导语与按钮字号（样式仍以 footer 内联为准） */
footer .footer-cta-wrapper p {
    font-size: 1.5rem !important;
}
/* 页脚区块标题（Get Started / Location / Follow Us） */
footer .text h3 {
    font-size: 1.35rem;
}

/* ========================================
   SEO: FAQ section + Related Questions（全站通用）
   ======================================== */
.faq-section {
    padding: 48px 0;
}
.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}
.faq-list details {
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.faq-list summary {
    padding: 14px 18px;
    font-weight: 600;
    cursor: pointer;
    background: #f8f9fa;
    list-style: none;
}
.faq-list summary::-webkit-details-marker {
    display: none;
}
.faq-list details[open] summary {
    border-bottom: 1px solid #e5e7eb;
}
.faq-list details p {
    padding: 14px 18px;
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
}
.related-questions {
    background: #f8f9fa;
    padding: 24px 32px;
    border-radius: 12px;
    margin: 40px 0;
}
.related-questions .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.related-questions h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 12px;
}
.related-questions ul {
    list-style: none;
    padding: 0;
}
.related-questions li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}
.related-questions li:last-child {
    border-bottom: none;
}
.related-questions a {
    color: #2d5a87;
    text-decoration: none;
    font-size: 1.05rem;
}
.related-questions a:hover {
    text-decoration: underline;
}
