/* Global styles */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

/* Header styles */
header {
	background-color: #333;
	color: #fff;
	padding: 20px;
	text-align: center;
}

header h1 {
	margin: 0;
	font-size: 30px;
	text-transform: uppercase;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

nav ul li {
	margin: 0 10px;
}

nav ul li a {
	color: #fff;
	text-decoration: none;
}

/* Main content styles */
main {
	padding: 40px;
}

section {
	margin-bottom: 40px;
}

section h1 {
	font-size: 40px;
	margin-bottom: 20px;
}

section p {
	font-size: 20px;
	margin-bottom: 40px;
}

.cta-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #333;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 18px;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #111;
}

/* Footer styles */
footer {
	background-color: #333;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-size: 14px;
}

