:root {
	--primary-green: #1a5f4a;
	--primary-green-dark: #0d3d2e;
	--accent-gold: #c9a227;
	--accent-gold-light: #e8d598;
	--neutral-warm: #f9f7f4;
	--neutral-cream: #fdfcfa;
	--text-dark: #2c3e34;
	--text-medium: #4a5d52;
	--text-light: #6b7c72;
	--border-subtle: #e5e1db;
}

.font-display {
	font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-body {
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
}

.governance-section {
	background: var(--neutral-cream);
}

.charter-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, 95, 74, 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-green) 0%, var(--accent-gold) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.section-card:hover {
	box-shadow: 0 8px 32px rgba(26, 95, 74, 0.12);
	transform: translateY(-2px);
}

.section-card:hover::before {
	opacity: 1;
}

.section-number {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-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, 95, 74, 0.25);
}

.section-title {
	color: var(--primary-green-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, 95, 74, 0.04) 0%, rgba(201, 162, 39, 0.04) 100%);
	border-left: 3px solid var(--accent-gold);
	padding: 1.25rem 1.5rem;
	border-radius: 0 8px 8px 0;
	margin: 1rem 0;
}

.responsibility-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-subtle);
}

.responsibility-item:last-child {
	border-bottom: none;
}

.responsibility-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.responsibility-icon svg {
	width: 18px;
	height: 18px;
	color: var(--primary-green-dark);
}

.intro-banner {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-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(201, 162, 39, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.final-statement {
	background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 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");
}

.gold-accent {
	color: var(--accent-gold);
}

.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-gold), transparent);
}

.divider-ornament svg {
	width: 24px;
	height: 24px;
	color: var(--accent-gold);
}

.pillar-card {
	background: white;
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.4s ease;
}

.pillar-card:hover {
	border-color: var(--accent-gold);
	box-shadow: 0 8px 32px rgba(26, 95, 74, 0.1);
}

.pillar-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	background: linear-gradient(135deg, rgba(26, 95, 74, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pillar-icon svg {
	width: 28px;
	height: 28px;
	color: var(--primary-green);
}

@media (max-width: 768px) {
	.section-number {
		width: 44px;
		height: 44px;
		font-size: 1.25rem;
	}
	
	.section-card {
		padding: 1.5rem;
	}
}