/* --- Privacy Policy Specific Styles --- */
/* 默认链接样式 */
nav a {
	text-decoration: none;
	color: var(--dark);
	margin-left: 20px;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 22px;
	/* 增加内边距让胶囊形状更明显 */
	border-radius: 50px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
}

/* 悬停效果 */
nav a:hover {
	color: var(--primary);
}

/* 选中后的“胶囊按钮”样式 */
nav a.active {
	background: var(--dark) !important;
	color: var(--white) !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* 页面整体包装 */
.privacy-wrapper {
	padding: 180px 0 120px;
	max-width: 860px;
	/* 针对英文长单词稍微放宽至 860px */
	margin: 0 auto;
	padding-left: 25px;
	padding-right: 25px;
}

/* 头部样式 */
.privacy-header {
	text-align: center;
	margin-bottom: 80px;
}

.badge {
	background: var(--primary-soft);
	color: var(--primary);
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
}

.privacy-header h1 {
	font-size: 48px;
	/* 加大标题，更有科技感 */
	font-weight: 800;
	margin-top: 24px;
	color: var(--dark);
	letter-spacing: -1.5px;
}

.subtitle {
	color: var(--text-muted);
	font-size: 15px;
	margin-top: 12px;
}

/* 正文容器 */
.privacy-content {
	background: transparent;
	line-height: 1.8;
}

/* 引言框优化：增加深度感 */
.intro-box {
	background: #f8fafc;
	padding: 40px;
	border-radius: 24px;
	border-left: 5px solid var(--primary);
	margin-bottom: 60px;
	color: var(--slate);
	font-size: 17px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.intro-box strong {
	color: var(--dark);
}

/* 章节布局 */
.policy-section {
	margin-bottom: 70px;
}

.policy-section h2 {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	color: var(--dark);
	letter-spacing: -0.5px;
}

/* 数字标号：更精致的矩形 */
.policy-section .num {
	font-style: normal;
	background: var(--dark);
	color: var(--white);
	width: 32px;
	height: 32px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	margin-right: 18px;
	flex-shrink: 0;
}

.policy-section p {
	color: var(--slate);
	margin-bottom: 25px;
	font-size: 16px;
}

/* 列表美化 */
.policy-section ul {
	padding-left: 5px;
	list-style: none;
	/* 去掉默认圆点，使用自定义符号 */
}

.policy-section li {
	margin-bottom: 16px;
	color: var(--slate);
	font-size: 16px;
	position: relative;
	padding-left: 25px;
}

.policy-section li::before {
	content: "•";
	color: var(--primary);
	font-weight: bold;
	font-size: 20px;
	position: absolute;
	left: 0;
	top: -2px;
}

/* 重点强调框 (Amazon DPP 相关内容) */
.highlight-box {
	background: #fff;
	padding: 45px;
	border-radius: 30px;
	border: 1px solid var(--border);
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
	position: relative;
	overflow: hidden;
}

.highlight-box::after {
	content: "COMPLIANCE";
	position: absolute;
	top: 20px;
	right: -30px;
	transform: rotate(45deg);
	background: #10b981;
	/* 绿色代表合规 */
	color: white;
	font-size: 10px;
	font-weight: 900;
	padding: 5px 40px;
}

/* 网格排版 */
.use-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 25px;
}

.use-item {
	background: #f1f5f9;
	padding: 20px;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 600;
	color: var(--dark);
	display: flex;
	align-items: center;
	border: 1px solid transparent;
	transition: 0.3s;
}

.use-item:hover {
	border-color: var(--primary);
	background: var(--white);
	transform: translateY(-3px);
}

/* 联系卡片优化：深色商务风，提高权威感 */
.privacy-contact-card {
	background: var(--dark);
	color: var(--white);
	padding: 50px;
	border-radius: 32px;
	margin-top: 40px;
}

.privacy-contact-card h4 {
	margin-bottom: 20px;
	font-size: 22px;
	color: var(--white);
	letter-spacing: -0.5px;
}

.privacy-contact-card p {
	color: var(--text-muted);
	margin-bottom: 30px;
	font-size: 15px;
}

.contact-line {
	margin-top: 15px;
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
}

.contact-line span {
	font-size: 20px;
	background: rgba(255, 255, 255, 0.1);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.privacy-wrapper {
		padding: 120px 20px 80px;
	}

	.privacy-header h1 {
		font-size: 34px;
	}

	.use-grid {
		grid-template-columns: 1fr;
	}

	.policy-section h2 {
		font-size: 20px;
	}

	.privacy-contact-card {
		padding: 35px 25px;
	}
}

/* 确保点击导航跳转时，标题不会被固定的导航栏遮住（留出80px高度） */
section {
	scroll-margin-top: 80px;
}

/* 导航链接的微调 */
nav a {
	text-decoration: none;
	color: var(--dark);
	margin-left: 30px;
	/* 增加一点间距，防止5个链接太拥挤 */
	font-weight: 600;
	font-size: 14px;
	transition: color 0.3s ease;
}

/* 移动端适配：如果链接太多，隐藏部分或缩小间距 */
@media (max-width: 900px) {
	nav a {
		margin-left: 15px;
		font-size: 13px;
	}
}

/* --- 7. Footer (重写版 - 确保稳固布局) --- */
.site-footer {
	background: #f8fafc;
	padding: 100px 0 0;
	border-top: 1px solid var(--border);
	margin-top: 60px;
	width: 100%;
}

.footer-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 40px 80px;
	display: grid;
	/* 采用 1.5:1:1 的黄金比例分配空间 */
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 60px;
}

/* 左侧公司信息列 */
.footer-brand-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo {
	font-size: 22px;
	font-weight: 800;
	color: var(--dark);
	letter-spacing: -1px;
}

.footer-logo span {
	color: var(--primary);
}

.footer-desc {
	font-size: 14px;
	color: var(--slate);
	line-height: 1.7;
	max-width: 320px;
}

/* 列表通用样式 */
.footer-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 25px;
	position: relative;
	display: block;
}

.footer-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 20px;
	height: 2px;
	background: var(--primary);
}

.footer-links,
.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li,
.contact-list li {
	font-size: 14px;
	color: var(--slate);
	margin-bottom: 15px;
	line-height: 1.5;
	word-break: break-word;
	/* 确保超长邮箱不撑破布局 */
}

.footer-links a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--primary);
	transform: translateX(5px);
}

/* 底部版权信息条 */
.footer-bottom {
	background: #ffffff;
	padding: 30px 0;
	border-top: 1px solid var(--border);
}

.bottom-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copyright {
	font-size: 13px;
	color: var(--text-muted);
}

.bottom-links {
	display: flex;
	gap: 25px;
	font-size: 13px;
	color: var(--text-muted);
}

.bottom-links a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
}

.bottom-links a:hover {
	color: var(--primary);
}

/* --- Footer 响应式适配 --- */
@media (max-width: 1024px) {
	.footer-container {
		grid-template-columns: 1fr 1fr;
		/* 中屏改为两列 */
		gap: 40px;
	}

	.footer-brand-col {
		grid-column: span 2;
		/* 公司信息占满整行 */
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.footer-container {
		grid-template-columns: 1fr;
		/* 手机端单列 */
		padding-bottom: 40px;
		text-align: center;
	}

	.footer-brand-col {
		align-items: center;
	}

	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
		/* 标题装饰线居中 */
	}

	.bottom-container {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.footer-links a:hover {
		transform: none;
		/* 手机端取消侧移效果 */
	}
}