* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
	background-color: #f5f5f5;
	color: #333;
}

.container {
	width: 90%;
	max-width: 1000px;
	margin: auto;
}

header {
	background: #e67e22;
	color: white;
	padding: 40px 0;
	text-align: center;
}

header h1 {
	font-size: 2.5rem;
}

nav {
	background: #333;
}

nav ul {
	display: flex;
	justify-content: center;
	list-style: none;
}

nav li {
	margin: 0 15px;
}

nav a {
	color: white;
	text-decoration: none;
	padding: 15px 0;
	display: block;
}

nav a:hover {
	color: #e67e22;
}

main {
	padding: 40px 0;
}

section {
	margin-bottom: 40px;
}

section h2 {
	margin-bottom: 15px;
	color: #e67e22;
}

section ul {
	margin-left: 20px;
}

button {
	background: #e67e22;
	color: white;
	border: none;
	padding: 12px 25px;
	cursor: pointer;
	font-size: 1rem;
}

button:hover {
	background: #cf711f;
}

footer {
	background: #333;
	color: white;
	text-align: center;
	padding: 15px 0;
	margin-top: 40px;
}