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

body {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #1a1a1a;
	background-color: #ffffff;
	line-height: 1.75;
	font-size: 17px;
}

/* ── Navigation Bar ── */
nav {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 48px;
	background-color: #fafafa;
	border-bottom: 1px solid #e0e0e0;
}

nav .nav-brand {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #111;
	text-decoration: none;
}

nav .nav-link {
	font-size: 15px;
	color: #555;
	text-decoration: none;
	transition: color 0.2s ease;
}

nav .nav-link:hover {
	color: #111;
}

/* ── Shared Section Padding ── */
.page-section {
	max-width: 100%;
	padding: 64px 16.667% 80px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.page-section {
		padding: 40px 8.333% 56px;
	}
}
