.policy-hero {
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #1e3a5f 100%);
}
.section-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}
.section-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}
.section-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #d4a574 0%, #c49660 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.25rem;
	flex-shrink: 0;
}
.prohibited-item {
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
	border-left: 4px solid #dc2626;
	border-radius: 0 12px 12px 0;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1rem;
}
.control-item {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	border-left: 4px solid #16a34a;
	border-radius: 0 12px 12px 0;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1rem;
}
.enforcement-item {
	background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
	border-left: 4px solid #ca8a04;
	border-radius: 0 12px 12px 0;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1rem;
}
.highlight-box {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border: 2px solid #3b82f6;
	border-radius: 16px;
	padding: 2rem;
}
.principle-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
	color: white;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin: 0.25rem;
}
.stat-card {
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1e3a5f;
	line-height: 1;
}
.divider-line {
	height: 4px;
	background: linear-gradient(90deg, #d4a574 0%, #1e3a5f 50%, #d4a574 100%);
	border-radius: 2px;
	margin: 3rem auto;
	width: 200px;
}
.governance-banner {
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
	border-radius: 20px;
	padding: 3rem;
	color: white;
}
.icon-shield {
	width: 60px;
	height: 60px;
	background: rgba(212, 165, 116, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.process-step {
	position: relative;
	padding-left: 3rem;
	padding-bottom: 2rem;
	border-left: 3px solid #e5e7eb;
}
.process-step:last-child {
	border-left: 3px solid transparent;
	padding-bottom: 0;
}
.process-step::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 0;
	width: 20px;
	height: 20px;
	background: #d4a574;
	border-radius: 50%;
	border: 4px solid white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.toc-item {
	padding: 0.75rem 1rem;
	border-radius: 8px;
	transition: all 0.2s ease;
	cursor: pointer;
}
.toc-item:hover {
	background: #f3f4f6;
}