:root {
	--bg-primary: #ffffff;
	--bg-secondary: #f8f9fa;
	--bg-tertiary: #f1f3f5;
	--text-primary: #1a1f2e;
	--text-secondary: #495057;
	--text-muted: #868e96;
	--brand-primary: #1a1f2e;
 
	--brand-gold: #FFBD00;
	--brand-gold-light: #FFDD7B;
	--brand-gold-dark: #F4B500;
	
	--border-color: #dee2e6;
	--success-color: #40c057;
	--error-color: #fa5252;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--radius: 8px;
	--container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.header {
	position: fixed; top: 0; left: 0; right: 0;
	background-color: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 2px solid var(--brand-gold);
	z-index: 1000; padding: 0.75rem 0; box-shadow: var(--shadow-sm);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo img { height: 50px; width: auto; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--brand-primary); letter-spacing: -0.5px; }
.logo-text span { color: var(--brand-gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
	text-decoration: none; color: #3C0000; font-weight: 600; font-size: 0.9rem;
	transition: all 0.2s; position: relative;
}
.nav-links a:hover { color: var(--brand-primary); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brand-primary); }

.btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0.875rem 1.75rem; font-weight: 600; font-size: 0.95rem;
	border-radius: var(--radius); text-decoration: none; transition: all 0.3s ease;
	cursor: pointer; border: none; gap: 0.5rem;
}
.btn-primary {
	background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
	color: white; box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}
.btn-primary:hover {
	background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
	transform: translateY(-2px); box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

/* Page Hero */
.page-hero {
	padding: 8rem 0 4rem 0;
	background: linear-gradient(135deg, var(--brand-primary) 0%, #2d3748 100%);
	color: white;
	text-align: center;
	border-bottom: 4px solid var(--brand-gold);
}
.page-hero-badge {
	display: inline-block;
	background: rgba(201, 169, 97, 0.2);
	border: 1px solid var(--brand-gold);
	color: var(--brand-gold);
	padding: 0.4rem 1.1rem;
	border-radius: 9999px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}
.page-hero h1 {
	font-size: 2.75rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 1rem;
}
.page-hero p {
	font-size: 1.05rem;
	color: #adb5bd;
	max-width: 560px;
	margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
	padding: 1rem 0;
	background-color: var(--bg-secondary);
	border-bottom: 1px solid var(--border-color);
	font-size: 0.85rem;
}
.breadcrumb-inner { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--brand-gold); }
.breadcrumb-inner span { color: var(--text-secondary); font-weight: 600; }

/* Content Layout */
.content-wrapper {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 4rem;
	padding: 4rem 0 6rem 0;
	align-items: start;
}

/* Sticky Sidebar TOC */
.toc {
	position: sticky;
	top: 90px;
}
.toc-title {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	margin-bottom: 1rem;
}
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 0.35rem; }
.toc-list a {
	text-decoration: none;
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.2s;
	display: block;
	padding: 0.3rem 0.75rem;
	border-left: 2px solid var(--border-color);
}
.toc-list a:hover {
	color: var(--brand-gold);
	border-left-color: var(--brand-gold);
	padding-left: 1rem;
}
.toc-card {
	background: var(--brand-primary);
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-top: 2rem;
	color: white;
}
.toc-card h4 { font-size: 0.9rem; color: var(--brand-gold); margin-bottom: 0.5rem; }
.toc-card p { font-size: 0.8rem; color: #adb5bd; margin-bottom: 1rem; }
.toc-card a {
	display: block; text-align: center; background: var(--brand-gold);
	color: white; padding: 0.6rem 1rem; border-radius: var(--radius);
	text-decoration: none; font-size: 0.85rem; font-weight: 700;
	transition: background 0.2s;
}
.toc-card a:hover { background: var(--brand-gold-dark); }

/* Policy Content */
.policy-content { max-width: 780px; }
.effective-date {
	display: inline-flex; align-items: center; gap: 0.5rem;
	background: var(--bg-secondary); border: 1px solid var(--border-color);
	padding: 0.5rem 1rem; border-radius: 9999px;
	font-size: 0.8rem; color: var(--text-muted); font-weight: 600;
	margin-bottom: 2.5rem;
}

.policy-section { margin-bottom: 3rem; scroll-margin-top: 100px; }
.policy-section h2 {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--bg-tertiary);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.policy-section h2 .section-num {
	font-size: 0.7rem;
	font-weight: 700;
	background: var(--brand-gold);
	color: white;
	width: 22px; height: 22px;
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.policy-section p {
	font-size: 0.975rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	line-height: 1.75;
}
.policy-section ul {
	list-style: none;
	margin: 0.75rem 0 1rem 0;
}
.policy-section ul li {
	font-size: 0.95rem;
	color: var(--text-secondary);
	padding: 0.4rem 0 0.4rem 1.5rem;
	position: relative;
	line-height: 1.7;
}
.policy-section ul li::before {
	content: '';
	position: absolute; left: 0; top: 0.85rem;
	width: 6px; height: 6px;
	background: var(--brand-gold);
	border-radius: 50%;
}
.policy-section h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 1.5rem 0 0.5rem 0;
}

.highlight-box {
	background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.04) 100%);
	border: 1px solid rgba(201, 169, 97, 0.35);
	border-left: 4px solid var(--brand-gold);
	border-radius: var(--radius);
	padding: 1.25rem 1.5rem;
	margin: 1.25rem 0;
}
.highlight-box p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
.highlight-box strong { color: var(--brand-primary); }

.warning-box {
	background: #fff9db;
	border: 1px solid #ffe066;
	border-left: 4px solid #f59f00;
	border-radius: var(--radius);
	padding: 1.25rem 1.5rem;
	margin: 1.25rem 0;
}
.warning-box p { margin: 0; font-size: 0.9rem; color: #664d03; }

.contact-box {
	background: var(--bg-secondary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius);
	padding: 2rem;
	margin-top: 3rem;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}
.contact-box-icon { font-size: 2rem; flex-shrink: 0; }
.contact-box h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-box p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.contact-box a { color: var(--brand-gold); text-decoration: none; font-weight: 600; }
.contact-box a:hover { text-decoration: underline; }

/* Footer */
.footer { background-color: var(--brand-primary); color: white; padding: 4rem 0 2rem 0; border-top: 4px solid var(--brand-gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: #adb5bd; margin-top: 1rem; font-size: 0.95rem; max-width: 300px; }
.footer h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; color: var(--brand-gold); font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #adb5bd; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; }
.footer-links a:hover { color: var(--brand-gold); padding-left: 4px; }
.footer-bottom {
	border-top: 1px solid #495057; padding-top: 2rem; display: flex; justify-content: space-between;
	align-items: center; flex-wrap: wrap; gap: 1rem; color: #868e96; font-size: 0.875rem;
}
.footer-bottom a { color: #adb5bd; text-decoration: none; margin-left: 1.5rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--brand-gold); }
.footer-bottom a.active-page { color: var(--brand-gold); }

/* Responsive */
@media (max-width: 968px) {
	.content-wrapper { grid-template-columns: 1fr; gap: 2rem; }
	.toc { position: static; display: none; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.mobile-menu-btn { display: block; }
	.nav-links {
		position: fixed; top: 70px; left: 0; right: 0; background-color: var(--bg-primary);
		flex-direction: column; padding: 2rem; border-bottom: 2px solid var(--brand-gold);
		box-shadow: var(--shadow-lg); transform: translateY(-150%); transition: transform 0.3s ease; gap: 1.5rem;
	}
	.nav-links.active { transform: translateY(0); }
	.page-hero h1 { font-size: 2rem; }
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.contact-box { flex-direction: column; gap: 0.75rem; }
}
