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

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f5f7fa;
	color: #333;
	line-height: 1.6;
}

header {
	background-color: #2c3e50;
	color: white;
	padding: 20px 0;
	text-align: center;
}

header h1 {
	font-size: 36px;
	letter-spacing: 2px;
}

nav {
	margin: 20px;
	background-color: #34495e;
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

nav a {
	color: white;
	text-decoration: none;
	margin: 0 15px;
	font-size: 18px;
}

nav a:hover {
	text-decoration: underline;
}

section {
	margin-top: 40px;
	text-align: center;
}

section h2 {
	font-size: 28px;
	color: #34495e;
	margin-bottom: 20px;
}

.banner {
	display: inline-block;
	margin-bottom: 20px;
}

.banner img {
	width: 100%;
	max-width: 600px;
	border-radius: 10px;
	transition: transform 0.3s ease-in-out;
}

.banner img:hover {
	transform: scale(1.05);
}

footer {
	margin-top: 50px;
	padding: 20px;
	background-color: #2c3e50;
	color: white;
	text-align: center;
}

footer p {
	font-size: 14px;
}
