:root {
	font-size: 16px;
	line-height: 1.6;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color-scheme: light dark;
}

body {
	margin: 0;
	padding: 0;
	background: #f5f5f7;
	color: #111827;
}

.page {
	max-width: 900px;
	margin: 2rem auto;
	padding: 2.5rem 2rem;
	background: #ffffff;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
}

h1, h2 {
	font-weight: 650;
	color: #111827;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

h1 {
	font-size: 1.9rem;
	text-align: center;
	margin-bottom: 0.5rem;
}

h2 {
	font-size: 1.25rem;
}

.subtitle {
	text-align: center;
	color: #6b7280;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

p {
	margin: 0.35rem 0;
	color: #374151;
}

strong {
	font-weight: 600;
}

.section {
	margin-top: 1.5rem;
}

.section-number {
	font-weight: 700;
	margin-right: 0.35rem;
}

ul {
	margin: 0.25rem 0 0.75rem 1.1rem;
	padding: 0;
}

li {
	margin: 0.2rem 0;
}

a {
	color: #2563eb;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.email-link {
	word-break: break-all;
}

.last-updated {
	font-size: 0.9rem;
	color: #6b7280;
	text-align: center;
	margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
	.page {
		margin: 0;
		min-height: 100vh;
		border-radius: 0;
		box-shadow: none;
	}
}