:root {
	--primary: #2563eb;
	--primary-hover: #1d4ed8;
	--secondary: #64748b;
	--background: #f8fafc;
	--surface: #ffffff;
	--text: #1e293b;
	--text-light: #64748b;
	--border: #e2e8f0;
	--success: #22c55e;
	--warning: #f59e0b;
	--danger: #ef4444;
	--radius: 8px;
	--shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	background-color: var(--background);
	color: var(--text);
	line-height: 1.6;
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.main-content {
	min-height: calc(100vh - 140px);
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.btn-primary {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background-color: var(--primary);
	color: white;
	border-radius: var(--radius);
	font-weight: 500;
	transition: background-color 0.2s;
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	text-decoration: none;
}

.btn-secondary {
	display: inline-block;
	padding: 0.5rem 1rem;
	background-color: var(--surface);
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: var(--radius);
	font-weight: 500;
	transition: all 0.2s;
}

.btn-secondary:hover {
	background-color: var(--primary);
	color: white;
	text-decoration: none;
}

.btn-link {
	color: var(--primary);
	font-weight: 500;
}

.navbar {
	background-color: var(--surface);
	border-bottom: 1px solid var(--border);
	padding: 1rem;
}

.navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 1.5rem;
}

.nav-links a {
	color: var(--text);
	font-weight: 500;
}

.footer {
	background-color: var(--surface);
	border-top: 1px solid var(--border);
	padding: 1.5rem;
	text-align: center;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.disclaimer {
	font-size: 0.875rem;
	color: var(--text-light);
	margin-top: 0.5rem;
}