:root {
	--primary-green: #2d5a27;
	--primary-green-light: #3d7a37;
	--primary-green-dark: #1e3d1a;
	--accent-gold: #d4a843;
	--accent-gold-light: #e4c373;
	--neutral-warm: #f9f6f2;
	--neutral-warm-dark: #e8e2d9;
	--text-dark: #2c2c2c;
	--text-medium: #5a5a5a;
	--white: #ffffff;
	--protection-blue: #1e4a6d;
	--protection-blue-light: #2d6a9f;
	--safety-teal: #0d7377;
	--safety-teal-light: #14a3a8;
	--alert-red: #c41e3a;
	--trust-purple: #5b3e8c;
}

.policy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.policy-hero-tagline {
	font-weight: 300;
	font-size: 1.25rem;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

.policy-intro-section {
	background: linear-gradient(135deg, var(--protection-blue) 0%, var(--protection-blue-light) 100%);
	padding: 4rem 0;
	margin-top: -1px;
}

.intro-card {
	background: var(--white);
	border-radius: 16px;
	padding: 3rem;
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
	position: relative;
	overflow: hidden;
}

.intro-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--safety-teal), var(--protection-blue), var(--trust-purple));
}

.shield-icon-large {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--safety-teal) 0%, var(--protection-blue) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 8px 24px rgba(13, 115, 119, 0.3);
}

.shield-icon-large svg {
	width: 40px;
	height: 40px;
	fill: var(--white);
}

.intro-title {
	color: var(--protection-blue);
	font-size: 1.75rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1.5rem;
}

.intro-text {
	color: var(--text-medium);
	font-size: 1.1rem;
	line-height: 1.8;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.policy-section {
	padding: 5rem 0;
}

.policy-section:nth-child(even) {
	background-color: var(--white);
}

.policy-section:nth-child(odd) {
	background-color: var(--neutral-warm);
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--protection-blue) 0%, var(--safety-teal) 100%);
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 50%;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(30, 74, 109, 0.3);
}

.section-title {
	color: var(--protection-blue);
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.section-subtitle {
	color: var(--text-medium);
	font-size: 1.15rem;
	max-width: 700px;
	margin: 0 auto;
}

.content-block {
	background: var(--white);
	border-radius: 12px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	border-left: 4px solid var(--safety-teal);
}

.content-block-alt {
	border-left-color: var(--protection-blue);
}

.content-block-accent {
	border-left-color: var(--trust-purple);
}

.content-block h3 {
	color: var(--protection-blue);
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.content-block h3 svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.content-block p {
	color: var(--text-medium);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.content-block p:last-child {
	margin-bottom: 0;
}

/* Scope Grid */
.scope-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.scope-card {
	background: var(--white);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 6px 25px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.scope-card:hover {
	transform: translateY(-5px);
	border-color: var(--safety-teal);
	box-shadow: 0 12px 35px rgba(13, 115, 119, 0.15);
}

.scope-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--safety-teal-light) 0%, var(--safety-teal) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
}

.scope-icon svg {
	width: 35px;
	height: 35px;
	fill: var(--white);
}

.scope-card h4 {
	color: var(--protection-blue);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.scope-card p {
	color: var(--text-medium);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Vulnerable Persons Section */
.vulnerable-persons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.vulnerable-card {
	background: linear-gradient(135deg, var(--white) 0%, #f0f7ff 100%);
	border-radius: 12px;
	padding: 1.75rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	border: 1px solid rgba(30, 74, 109, 0.1);
	transition: all 0.3s ease;
}

.vulnerable-card:hover {
	box-shadow: 0 8px 25px rgba(30, 74, 109, 0.12);
	transform: translateY(-3px);
}

.vulnerable-icon {
	width: 50px;
	height: 50px;
	background: var(--protection-blue);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vulnerable-icon svg {
	width: 26px;
	height: 26px;
	fill: var(--white);
}

.vulnerable-card h4 {
	color: var(--protection-blue);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.vulnerable-card p {
	color: var(--text-medium);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Principles Section */
.principles-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.principle-card {
	background: var(--white);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.principle-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--safety-teal), var(--protection-blue));
}

.principle-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.principle-number {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 3rem;
	font-weight: 800;
	color: rgba(13, 115, 119, 0.08);
}

.principle-icon {
	width: 75px;
	height: 75px;
	background: linear-gradient(135deg, var(--safety-teal) 0%, var(--protection-blue) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 6px 20px rgba(13, 115, 119, 0.25);
}

.principle-icon svg {
	width: 36px;
	height: 36px;
	fill: var(--white);
}

.principle-card h4 {
	color: var(--protection-blue);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.principle-card p {
	color: var(--text-medium);
	font-size: 1rem;
	line-height: 1.7;
}

/* Prohibited Section */
.prohibited-section {
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.prohibited-header {
	background: linear-gradient(135deg, var(--alert-red) 0%, #a01830 100%);
	color: var(--white);
	padding: 2rem;
	border-radius: 12px 12px 0 0;
	text-align: center;
}

.prohibited-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.prohibited-header svg {
	width: 32px;
	height: 32px;
	fill: var(--white);
}

.prohibited-content {
	background: var(--white);
	border-radius: 0 0 12px 12px;
	padding: 2.5rem;
	box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.prohibited-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.prohibited-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: #fef7f7;
	border-radius: 10px;
	border-left: 4px solid var(--alert-red);
}

.prohibited-icon {
	width: 40px;
	height: 40px;
	background: var(--alert-red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.prohibited-icon svg {
	width: 20px;
	height: 20px;
	fill: var(--white);
}

.prohibited-item h4 {
	color: var(--alert-red);
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

.prohibited-item p {
	color: var(--text-medium);
	font-size: 0.92rem;
	line-height: 1.5;
}

/* Reporting Section */
.reporting-flow {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-top: 2rem;
	position: relative;
}

.reporting-step {
	background: var(--white);
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 6px 25px rgba(0,0,0,0.08);
	position: relative;
	z-index: 1;
}

.step-number {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--protection-blue) 0%, var(--safety-teal) 100%);
	color: var(--white);
	font-size: 1.25rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	box-shadow: 0 4px 12px rgba(30, 74, 109, 0.3);
}

.reporting-step h4 {
	color: var(--protection-blue);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.reporting-step p {
	color: var(--text-medium);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Confidentiality Section */
.confidentiality-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.confidentiality-wrapper {
		grid-template-columns: 1fr;
	}
}

.confidentiality-card {
	background: var(--white);
	border-radius: 12px;
	padding: 2.5rem;
	box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.confidentiality-card.protection {
	border-top: 4px solid var(--safety-teal);
}

.confidentiality-card.whistleblower {
	border-top: 4px solid var(--trust-purple);
}

.confidentiality-card h4 {
	color: var(--protection-blue);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.confidentiality-card h4 svg {
	width: 28px;
	height: 28px;
}

.confidentiality-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.confidentiality-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid #eee;
	color: var(--text-medium);
	font-size: 1rem;
	line-height: 1.6;
}

.confidentiality-list li:last-child {
	border-bottom: none;
}

.confidentiality-list li svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 3px;
}

/* Commitment Banner */
.commitment-banner {
	background: linear-gradient(135deg, var(--protection-blue) 0%, var(--safety-teal) 100%);
	padding: 4rem 0;
}

.commitment-content {
	text-align: center;
	color: var(--white);
}

.commitment-icon {
	width: 90px;
	height: 90px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	border: 3px solid rgba(255,255,255,0.3);
}

.commitment-icon svg {
	width: 45px;
	height: 45px;
	fill: var(--white);
}

.commitment-content h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.commitment-content p {
	font-size: 1.15rem;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.95;
}

/* Policy Details Grid */
.policy-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.detail-card {
	background: var(--white);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.detail-card h4 {
	color: var(--protection-blue);
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--safety-teal);
}

.detail-card p {
	color: var(--text-medium);
	font-size: 1rem;
	line-height: 1.7;
}

/* Document Info Footer */
.document-info {
	background: var(--white);
	padding: 3rem 0;
	border-top: 1px solid #e5e5e5;
}

.document-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	text-align: center;
}

.meta-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.meta-label {
	font-size: 0.85rem;
	color: var(--text-medium);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.25rem;
}

.meta-value {
	font-size: 1rem;
	color: var(--protection-blue);
	font-weight: 600;
}