body {
	font-family: 'Lexend', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	background-color: #fcfcfc;
	color: #333;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

.logo {
	width: 100px;
}

/* Hero */
.hero {
	padding: 5rem 5rem 64px;
	position: relative;
	max-width: 860px;
	margin: -60px auto 0;
	background-color: #fcfcfc;
}

.hero-title {
	font-family: 'Lexend', system-ui, sans-serif;
	font-weight: 600;
	color: #1f1f1f;
	font-size: 3.5rem;
	margin: 0;
	margin-top: 1rem;
}

/* Centered Container */
.container {
	max-width: 860px;
	margin: -60px auto 0;
	padding: 2rem;
	position: relative;
	z-index: 10;
}

/* Typography */
h2 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #eee;
	padding-bottom: 0.5rem;
}

p {
	margin-bottom: 1.5rem;
}

/* Navigation */
nav {
	margin-bottom: 3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	border-bottom: 2px solid #EAE7EA;
}

nav a {
	text-decoration: none;
	color: #888;
	font-size: 1rem;
	transform: translateY(2px);
	margin-right: 1.5rem;
	border-bottom: 2px solid transparent;
}

nav a.active {
	color: #333;
	font-weight: 500;
	border-bottom: 4px solid #FBD880;
}

/* Sections */
section {
	margin-bottom: 2rem;
}

.footer {
	display: flex;
	justify-content: end;
	max-width: 860px;
	margin: -1px auto 10rem;
}

.footer img {
	width: 440px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero {
		padding: 4rem 1rem 6rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.container {
		padding: 1.5rem;
		margin-top: -40px;
	}

	h2 {
		font-size: 1.25rem;
	}

	nav {
		margin-bottom: 2rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 3rem 1rem 5rem;
	}

	.hero-title {
		font-size: 2rem;
	}

	.container {
		margin-top: -30px;
	}
}
