/* ============================================================
   Privacy Policy 页面样式 - privacy.css
   ============================================================ */

/* ===== 主体区域 ===== */
.privacy-main {
	padding: 60px 0 100px;
}

/* ===== 页面标题 ===== */
.privacy-page-title {
	font-size: 30px;
	font-weight: 500;
	color: #000;
	margin: 0 0 48px;
	line-height: 1.3;
}

/* ===== 章节块 ===== */
.pp-section {
	margin-bottom: 40px;
}

/* ===== 章节标题（编号 + 标题）===== */
.pp-heading {
	font-size: 22px;
	font-weight: 500;
	color: #000;
	line-height: 28px;
	margin: 0 0 14px;
}

/* ===== 正文段落 ===== */
.pp-text {
	font-size: 16px;
	font-weight: 400;
	color: #333;
	line-height: 1.8;
	margin: 0 0 6px;
}
.pp-text:last-child {
	margin-bottom: 0;
}

/* ===== 联系信息块（缩进） ===== */
.pp-info-block {
	padding-left: 20px;
	border-left: 2px solid #e0e0e0;
	margin-top: 10px;
}
.pp-info-block .pp-text {
	margin-bottom: 4px;
}

/* ===== 列表 ===== */
.pp-list {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
}
.pp-list li {
	font-size: 16px;
	font-weight: 400;
	color: #333;
	line-height: 1.8;
	padding-left: 20px;
	position: relative;
	margin-bottom: 2px;
}
.pp-list li::before {
	content: '';
	position: absolute;
	left: 6px;
	top: 12px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #333;
}

/* ===== 链接 ===== */
.pp-link {
	color: #142949;
	text-decoration: underline;
}
.pp-link:hover {
	color: #1a3560;
}

/* ===== 响应式 ===== */
@media (max-width: 767px) {
	.privacy-main { padding: 36px 0 64px; }
	.privacy-page-title { font-size: 22px; margin-bottom: 32px; }
	.pp-heading { font-size: 17px; line-height: 1.4; }
	.pp-text,
	.pp-list li { font-size: 14px; }
	.pp-section { margin-bottom: 28px; }
}

@media (min-width: 768px) and (max-width: 1199px) {
	.privacy-page-title { font-size: 26px; }
	.pp-heading { font-size: 19px; }
}
