:root {
	--primary-indigo: #4a3f6b;
	--primary-indigo-dark: #2d2642;
	--accent-amber: #d4a84b;
	--accent-amber-light: #f0d99c;
	--accent-rose: #c77b7b;
	--neutral-warm: #f9f8f6;
	--neutral-cream: #fdfcfa;
	--text-dark: #2c2a35;
	--text-medium: #524d5e;
	--text-light: #7a7485;
	--border-subtle: #e5e3e8;
	--success-green: #5a9a7a;
	--warning-red: #b85c5c;
}

.font-display {
	font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-body {
	font-family: 'Source Sans Pro', -apple-system, sans-serif;
}

.conduct-section {
	background: var(--neutral-cream);
}

.conduct-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(74, 63, 107, 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-indigo) 0%, var(--accent-amber) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.section-card:hover {
	box-shadow: 0 8px 32px rgba(74, 63, 107, 0.12);
	transform: translateY(-2px);
}

.section-card:hover::before {
	opacity: 1;
}

.section-number {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-indigo-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(74, 63, 107, 0.25);
}

.section-title {
	color: var(--primary-indigo-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(74, 63, 107, 0.04) 0%, rgba(212, 168, 75, 0.04) 100%);
	border-left: 3px solid var(--accent-amber);
	padding: 1.25rem 1.5rem;
	border-radius: 0 8px 8px 0;
	margin: 1rem 0;
}

.warning-box {
	background: linear-gradient(135deg, rgba(184, 92, 92, 0.06) 0%, rgba(199, 123, 123, 0.04) 100%);
	border-left: 3px solid var(--warning-red);
	padding: 1.25rem 1.5rem;
	border-radius: 0 8px 8px 0;
	margin: 1rem 0;
}

.principle-card {
	background: white;
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	padding: 1.75rem;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.principle-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-indigo), var(--accent-amber));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.principle-card:hover {
	border-color: var(--accent-amber);
	box-shadow: 0 8px 32px rgba(74, 63, 107, 0.1);
}

.principle-card:hover::after {
	transform: scaleX(1);
}

.principle-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	background: linear-gradient(135deg, rgba(74, 63, 107, 0.1) 0%, rgba(212, 168, 75, 0.1) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.principle-icon svg {
	width: 28px;
	height: 28px;
	color: var(--primary-indigo);
}

.conduct-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-subtle);
}

.conduct-item:last-child {
	border-bottom: none;
}

.conduct-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--success-green) 0%, #4a8a6a 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.conduct-icon svg {
	width: 20px;
	height: 20px;
	color: white;
}

.prohibited-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, rgba(184, 92, 92, 0.15) 0%, rgba(199, 123, 123, 0.15) 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-indigo) 0%, var(--primary-indigo-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(212, 168, 75, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.final-statement {
	background: linear-gradient(135deg, var(--primary-indigo-dark) 0%, var(--primary-indigo) 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");
}

.amber-accent {
	color: var(--accent-amber);
}

.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-amber), transparent);
}

.divider-ornament svg {
	width: 24px;
	height: 24px;
	color: var(--accent-amber);
}

.stakeholder-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, rgba(74, 63, 107, 0.08) 0%, rgba(212, 168, 75, 0.08) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: 50px;
	font-size: 0.875rem;
	color: var(--primary-indigo);
	font-weight: 500;
}

.enforcement-card {
	background: white;
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.enforcement-card:hover {
	box-shadow: 0 4px 16px rgba(74, 63, 107, 0.1);
}

.enforcement-level {
	width: 48px;
	height: 48px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
}

.level-1 {
	background: linear-gradient(135deg, var(--accent-amber) 0%, #c49a3d 100%);
}

.level-2 {
	background: linear-gradient(135deg, var(--accent-rose) 0%, #b56b6b 100%);
}

.level-3 {
	background: linear-gradient(135deg, var(--warning-red) 0%, #a04c4c 100%);
}

.conflict-box {
	background: linear-gradient(135deg, rgba(74, 63, 107, 0.06) 0%, rgba(212, 168, 75, 0.06) 100%);
	border: 2px solid var(--primary-indigo);
	border-radius: 16px;
	padding: 2rem;
	position: relative;
}

.reporting-channel {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: white;
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.reporting-channel:hover {
	border-color: var(--accent-amber);
	box-shadow: 0 4px 16px rgba(74, 63, 107, 0.1);
}

.channel-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-indigo-dark) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.channel-icon svg {
	width: 24px;
	height: 24px;
	color: white;
}

@media (max-width: 768px) {
	.section-number {
		width: 44px;
		height: 44px;
		font-size: 1.25rem;
	}
	
	.section-card {
		padding: 1.5rem;
	}
	
	.stakeholder-badge {
		margin: 0.25rem;
	}
}