/* 法律页面共用样式 */
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8fafc;
  color: #0f172a;
}

/* 顶部导航 */
.legal-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.9);
}
.legal-header .brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.legal-header .brand-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

/* 正文区域 */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}
.legal-content h1 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}
.legal-content .last-updated {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 36px;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 36px 0 12px;
}
.legal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 16px;
}
.legal-content ul {
  padding-left: 24px;
  margin: 0 0 16px;
}
.legal-content li {
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 6px;
}
.legal-content a {
  color: #2563eb;
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}

/* Contact 页面 */
.contact-page h1 { margin-bottom: 12px; }
.brand-intro {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 40px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 10px;
  color: #475569;
}
.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}
a.contact-value { color: #2563eb; text-decoration: none; }
a.contact-value:hover { text-decoration: underline; }
.contact-coming-soon {
  color: #94a3b8;
  font-style: italic;
  font-weight: 400;
}

/* Footer（legal 页面需要更大间距 + 隐藏语言切换） */
.site-footer { margin-top: 48px; }
.footer-locale { display: none; }

@media (max-width: 720px) {
  .legal-content {
    padding: 32px 16px;
  }
  .legal-header {
    padding: 12px 16px;
  }
}
