body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
}

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

img {
	height: 20vh;
	width: auto;
}

h1 {
	margin: 0;
}

main {
	padding: 20px;
	max-width: 92vw;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	background: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}

section {
	display: flex;
	padding: 2rem;
	max-width: calc(0.92*100vw);
	margin: auto;
	background-color: #fff;
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-radius: 10px;
	box-shadow: 0 0 40px rgba(0,0,0,0.14);
	flex-direction: column;
	animation: fadeInUp 1.5s ease-in-out;
	transition: all 0.3s ease;
}

h2 {
	text-align: center;
	color: #007BFF;
}

ul {
	list-style-type: disc;
	margin-left: 20px;
}

a {
	display: block;
	text-align: center;
	font-weight: bold;
	color: black;
}

footer {
	text-align: center;
	padding: 10px 0;
	background: #000000;
	color: white;
	position: relative;
	bottom: 0;
	width: 100%;
}
