
.privacy-policy-section {
  padding: 60px 0;
  background: #ffffff;
}

.privacy-content {
  max-width: 100%;
  margin: 0 auto;
  color: #1e293b;
}

/* 标题样式 — 自动适配H2/H3等编辑器常用标签 */
.privacy-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1.8rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #0a66b9;  /* 品牌色下划线 */
  display: inline-block;
  color: #0f172a;
  letter-spacing: -0.3px;
}

.privacy-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem;
  color: #1e293b;
  position: relative;
  padding-left: 0;
}

.privacy-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.2rem 0 0.6rem;
  color: #334155;
}

/* 段落样式 */
.privacy-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  color: #475569;
}

/* 粗体强调（STRONG标签）*/
.privacy-content strong,
.privacy-content b {
  color: #0f172a;
  font-weight: 600;
}

/* 列表样式 (UL/OL) */
.privacy-content ul,
.privacy-content ol {
  margin: 0.75rem 0 1.2rem 1.5rem;
  padding-left: 0.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #475569;
}

/* 可选卡片样式 — 如果编辑器包含特殊强调块，可自动识别或手动添加class，此处作为增强 */
.privacy-card {
  background: #f8fafc;
  border-radius: 24px;
  padding: 28px;
  margin: 32px 0;
  border: 1px solid #e2e8f0;
}

/* 更新日期区域 */
.privacy-date {
  color: #0a66b9;
  font-size: 0.9rem;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  text-align: right;
  font-weight: 500;
}

/* 响应式调整：移动端舒适阅读 */
@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 40px 0;
  }
  .privacy-content h2 {
    font-size: 1.5rem;
  }
  .privacy-content h3 {
    font-size: 1.25rem;
  }
  .privacy-content p,
  .privacy-content li {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .privacy-content ul,
  .privacy-content ol {
    margin-left: 1rem;
  }
  .privacy-card {
    padding: 20px;
  }
}

/* 如果页面背景需要柔和过渡，也可以添加轻微阴影 */
.privacy-content a {
  color: #0a66b9;
  text-decoration: none;
  transition: color 0.2s;
}

.privacy-content a:hover {
  color: #054a7a;
  text-decoration: underline;
}