:root {
	--primary-green: #2d5a3d;
	--primary-green-light: #3d7a52;
	--primary-green-dark: #1e3d29;
	--accent-gold: #c9a227;
	--accent-gold-light: #e3c565;
	--neutral-warm: #faf8f5;
	--neutral-cream: #f5f1e8;
	--text-dark: #2c3e2d;
	--text-medium: #4a5f4b;
	--text-light: #6b7c6c;
	--border-color: #d4e0d6;
	--shadow-soft: 0 4px 20px rgba(45, 90, 61, 0.08);
	--shadow-medium: 0 8px 30px rgba(45, 90, 61, 0.12);
}

.policy-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 24px 80px;
}

.policy-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 3px solid var(--primary-green);
}

.policy-header h1 {
	font-size: 2.75rem;
	font-weight: 700;
	/*color: var(--primary-green);*/
	color: var(--accent-gold);
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.policy-header .organization-name {
	font-size: 1.25rem;
	color: var(--accent-gold);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
}

.policy-header .effective-date {
	display: inline-block;
	background: var(--primary-green);
	color: white;
	padding: 10px 28px;
	border-radius: 30px;
	font-size: 0.95rem;
	font-weight: 500;
}

.policy-intro {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: white;
	padding: 45px;
	border-radius: 16px;
	margin-bottom: 50px;
	box-shadow: var(--shadow-medium);
}

.policy-intro h2 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.policy-intro h2 svg {
	width: 32px;
	height: 32px;
	fill: var(--accent-gold-light);
}

.policy-intro p {
	font-size: 1.1rem;
	line-height: 1.85;
	opacity: 0.95;
}

.toc-section {
	background: white;
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 50px;
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--border-color);
}

.toc-section h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--border-color);
}

.toc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 12px;
}

.toc-item {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	background: var(--neutral-cream);
	border-radius: 10px;
	color: var(--text-dark);
	font-weight: 500;
	transition: all 0.3s ease;
}

.toc-item:hover {
	background: var(--primary-green);
	color: white;
	transform: translateX(6px);
}

.toc-item .toc-number {
	width: 32px;
	height: 32px;
	background: var(--primary-green);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
	margin-right: 14px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.toc-item:hover .toc-number {
	background: var(--accent-gold);
	color: var(--primary-green-dark);
}

.policy-section {
	background: white;
	border-radius: 16px;
	padding: 45px;
	margin-bottom: 35px;
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.policy-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-green) 0%, var(--accent-gold) 100%);
}

.section-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--border-color);
}

.section-number {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
	color: white;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(45, 90, 61, 0.25);
}

.section-title-group h2 {
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 6px;
}

.section-title-group .section-subtitle {
	font-size: 1rem;
	color: var(--text-light);
	font-weight: 400;
}

.section-content p {
	color: var(--text-medium);
	font-size: 1.05rem;
	line-height: 1.9;
	margin-bottom: 20px;
}

.section-content p:last-child {
	margin-bottom: 0;
}

.highlight-box {
	background: linear-gradient(135deg, var(--neutral-cream) 0%, #f0ebe0 100%);
	border-left: 5px solid var(--accent-gold);
	padding: 28px 32px;
	border-radius: 0 12px 12px 0;
	margin: 28px 0;
}

.highlight-box p {
	margin-bottom: 0;
	font-style: italic;
	color: var(--text-dark);
}

.subsection {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px dashed var(--border-color);
}

.subsection h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-green-dark);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.subsection h3 svg {
	width: 24px;
	height: 24px;
	fill: var(--accent-gold);
}

.risk-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.risk-category-card {
	background: var(--neutral-cream);
	border-radius: 14px;
	padding: 30px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.risk-category-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-medium);
	border-color: var(--primary-green-light);
}

.risk-card-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.risk-card-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.risk-card-icon svg {
	width: 26px;
	height: 26px;
	fill: white;
}

.risk-card-header h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary-green-dark);
}

.risk-category-card p {
	color: var(--text-medium);
	font-size: 0.98rem;
	line-height: 1.75;
	margin-bottom: 16px;
}

.risk-examples {
	background: white;
	border-radius: 10px;
	padding: 18px 20px;
	margin-top: 15px;
}

.risk-examples h5 {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--primary-green);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.risk-examples ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.risk-examples li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
	color: var(--text-medium);
	font-size: 0.92rem;
	line-height: 1.5;
}

.risk-examples li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: var(--accent-gold);
	border-radius: 50%;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.process-step {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	background: var(--neutral-cream);
	padding: 28px;
	border-radius: 14px;
	position: relative;
}

.process-step::after {
	content: '';
	position: absolute;
	left: 42px;
	top: 85px;
	width: 3px;
	height: calc(100% - 60px);
	background: linear-gradient(180deg, var(--primary-green-light) 0%, transparent 100%);
}

.process-step:last-child::after {
	display: none;
}

.step-number-circle {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 700;
	flex-shrink: 0;
	z-index: 1;
	box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

.step-content h4 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-green-dark);
	margin-bottom: 12px;
}

.step-content p {
	color: var(--text-medium);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 0;
}

.risk-matrix {
	margin-top: 35px;
	background: var(--neutral-cream);
	border-radius: 14px;
	padding: 35px;
	border: 1px solid var(--border-color);
}

.risk-matrix h4 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-green-dark);
	margin-bottom: 25px;
	text-align: center;
}

.matrix-grid {
	display: grid;
	grid-template-columns: auto repeat(4, 1fr);
	gap: 3px;
	background: var(--border-color);
	border-radius: 10px;
	overflow: hidden;
}

.matrix-cell {
	background: white;
	padding: 14px 10px;
	text-align: center;
	font-size: 0.88rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.matrix-header {
	background: var(--primary-green);
	color: white;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.8rem;
}

.matrix-row-header {
	background: var(--primary-green-light);
	color: white;
	font-weight: 600;
	writing-mode: vertical-lr;
	text-orientation: mixed;
	transform: rotate(180deg);
	padding: 18px 10px;
}

.risk-low {
	background: #d4edda;
	color: #155724;
	font-weight: 600;
}

.risk-medium {
	background: #fff3cd;
	color: #856404;
	font-weight: 600;
}

.risk-high {
	background: #f8d7da;
	color: #721c24;
	font-weight: 600;
}

.risk-critical {
	background: #c82333;
	color: white;
	font-weight: 700;
}

.mitigation-strategies {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.mitigation-card {
	background: white;
	border-radius: 14px;
	padding: 30px;
	border: 2px solid var(--border-color);
	text-align: center;
	transition: all 0.3s ease;
}

.mitigation-card:hover {
	border-color: var(--primary-green);
	transform: translateY(-4px);
	box-shadow: var(--shadow-medium);
}

.mitigation-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.mitigation-icon svg {
	width: 34px;
	height: 34px;
	fill: white;
}

.mitigation-card h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary-green-dark);
	margin-bottom: 14px;
}

.mitigation-card p {
	color: var(--text-medium);
	font-size: 0.95rem;
	line-height: 1.7;
}

.governance-table {
	width: 100%;
	margin-top: 30px;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.governance-table thead th {
	background: var(--primary-green);
	color: white;
	padding: 18px 20px;
	font-weight: 700;
	text-align: left;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.governance-table tbody td {
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	color: var(--text-medium);
	font-size: 0.98rem;
	line-height: 1.6;
	background: white;
}

.governance-table tbody tr:last-child td {
	border-bottom: none;
}

.governance-table tbody tr:hover td {
	background: var(--neutral-cream);
}

.role-badge {
	display: inline-block;
	background: var(--primary-green-light);
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
}

.review-timeline {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.timeline-item {
	display: flex;
	align-items: stretch;
	gap: 20px;
}

.timeline-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50px;
	flex-shrink: 0;
}

.timeline-dot {
	width: 20px;
	height: 20px;
	background: var(--primary-green);
	border-radius: 50%;
	border: 4px solid var(--accent-gold-light);
}

.timeline-line {
	flex: 1;
	width: 3px;
	background: var(--border-color);
}

.timeline-content {
	flex: 1;
	background: var(--neutral-cream);
	padding: 24px;
	border-radius: 12px;
	border-left: 4px solid var(--primary-green);
}

.timeline-content h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-green-dark);
	margin-bottom: 10px;
}

.timeline-content p {
	color: var(--text-medium);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0;
}

.commitment-banner {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: white;
	padding: 50px;
	border-radius: 16px;
	text-align: center;
	margin-top: 50px;
	box-shadow: var(--shadow-medium);
}

.commitment-banner h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.commitment-banner p {
	font-size: 1.15rem;
	line-height: 1.8;
	opacity: 0.95;
	max-width: 800px;
	margin: 0 auto;
}

.document-footer {
	margin-top: 50px;
	padding-top: 35px;
	border-top: 2px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 25px;
}

.doc-info {
	/*color: var(--text-light);*/
	color: var(--accent-gold-light);
	font-size: 0.95rem;
}

.doc-info span {
	display: block;
	margin-bottom: 6px;
}

.doc-info strong {
	color: var(--text-dark);
}

.version-badge {
	background: var(--primary-green);
	color: white;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	.policy-container {
		padding: 40px 16px 60px;
	}

	.policy-header h1 {
		font-size: 2rem;
	}

	.policy-section {
		padding: 28px 20px;
	}

	.section-header {
		flex-direction: column;
		gap: 15px;
	}

	.risk-category-grid {
		grid-template-columns: 1fr;
	}

	.matrix-grid {
		font-size: 0.75rem;
	}

	.process-step {
		flex-direction: column;
		gap: 18px;
		text-align: center;
	}

	.process-step::after {
		display: none;
	}

	.document-footer {
		flex-direction: column;
		text-align: center;
	}
}