:root {
	--primary-blue: #1a4a6e;
	--primary-blue-dark: #0d2d45;
	--accent-teal: #2a9d8f;
	--accent-teal-light: #7ed4c8;
	--accent-coral: #e07a5f;
	--neutral-warm: #f8f9fa;
	--neutral-cream: #fdfcfa;
	--text-dark: #2c3e50;
	--text-medium: #4a5d6e;
	--text-light: #6b7c8a;
	--border-subtle: #e1e5e9;
	--warning-red: #c0392b;
	--warning-red-light: #fadbd8;
}

.font-display {
	font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-body {
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
}

.policy-section {
	background: var(--neutral-cream);
}

.policy-container {
	max-width: 1100px;
	margin: 0 auto;
}

.section-card {
	background: white;
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(26, 74, 110, 0.06);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.section-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.section-card:hover {
	box-shadow: 0 8px 32px rgba(26, 74, 110, 0.12);
	transform: translateY(-2px);
}

.section-card:hover::before {
	opacity: 1;
}

.section-number {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(26, 74, 110, 0.25);
}

.section-title {
	color: var(--primary-blue-dark);
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
}

.section-content {
	color: var(--text-medium);
	font-family: 'Source Sans Pro', sans-serif;
	line-height: 1.8;
}

.highlight-box {
	background: linear-gradient(135deg, rgba(26, 74, 110, 0.04) 0%, rgba(42, 157, 143, 0.04) 100%);
	border-left: 3px solid var(--accent-teal);
	padding: 1.25rem 1.5rem;
	border-radius: 0 8px 8px 0;
	margin: 1rem 0;
}

.warning-box {
	background: linear-gradient(135deg, rgba(192, 57, 43, 0.06) 0%, rgba(224, 122, 95, 0.04) 100%);
	border-left: 3px solid var(--warning-red);
	padding: 1.25rem 1.5rem;
	border-radius: 0 8px 8px 0;
	margin: 1rem 0;
}

.zero-tolerance-banner {
	background: linear-gradient(135deg, var(--warning-red) 0%, #922b21 100%);
	color: white;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0;
}

.commitment-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-subtle);
}

.commitment-item:last-child {
	border-bottom: none;
}

.commitment-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent-teal-light) 0%, var(--accent-teal) 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.commitment-icon svg {
	width: 20px;
	height: 20px;
	color: white;
}

.prohibited-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--warning-red-light) 0%, rgba(192, 57, 43, 0.2) 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.prohibited-icon svg {
	width: 20px;
	height: 20px;
	color: var(--warning-red);
}

.intro-banner {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
	position: relative;
	overflow: hidden;
}

.intro-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(42, 157, 143, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.final-statement {
	background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
	position: relative;
	overflow: hidden;
}

.final-statement::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.teal-accent {
	color: var(--accent-teal);
}

.divider-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin: 2rem 0;
}

.divider-ornament::before,
.divider-ornament::after {
	content: '';
	height: 1px;
	width: 80px;
	background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
}

.divider-ornament svg {
	width: 24px;
	height: 24px;
	color: var(--accent-teal);
}

.scope-card {
	background: white;
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	padding: 1.75rem;
	text-align: center;
	transition: all 0.4s ease;
}

.scope-card:hover {
	border-color: var(--accent-teal);
	box-shadow: 0 8px 32px rgba(26, 74, 110, 0.1);
}

.scope-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	background: linear-gradient(135deg, rgba(26, 74, 110, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scope-icon svg {
	width: 28px;
	height: 28px;
	color: var(--primary-blue);
}

.child-definition-box {
	background: linear-gradient(135deg, rgba(42, 157, 143, 0.08) 0%, rgba(126, 212, 200, 0.08) 100%);
	border: 2px solid var(--accent-teal);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	position: relative;
}

.child-definition-box::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-teal);
	color: white;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.reporting-step {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.reporting-step:hover {
	box-shadow: 0 4px 16px rgba(26, 74, 110, 0.1);
}

.step-number {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-teal-light) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 700;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.section-number {
		width: 44px;
		height: 44px;
		font-size: 1.25rem;
	}
	
	.section-card {
		padding: 1.5rem;
	}
}