* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
	color: #333;
}

header {
	background-color: #222;
	color: white;
	padding: 1rem 2rem;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

.nav-links li {
	position: relative;
}

.nav-links a {
	color: white;
	text-decoration: none;
	padding: 0.5rem;
	display: block;
}

.nav-links a:hover {
	background-color: #444;
	border-radius: 5px;
}

/* Dropdown styles */
.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #333;
	min-width: 200px;
	z-index: 10;
	border-radius: 4px;
}

.dropdown-content li {
	border-bottom: 1px solid #444;
}

.dropdown-content li:last-child {
	border-bottom: none;
}

.dropdown-content a {
	padding: 0.75rem 1rem;
}

.dropdown:hover .dropdown-content {
	display: block;
}

main {
	padding: 2rem;
	text-align: center;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

footer {
	background-color: #222;
	color: white;
	text-align: center;
	padding: 1rem;
	margin-top: 3rem;
}