* {
    margin: 0;
    padding: 0;
}

body {
	background-color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

#header {
	width: 1250px;
	height: 100px;
	background-color: #00703C;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

#header img {
	margin-left: 25px;
}

#section1 {
	width: 1250px;
	height: 650px;
	background-color: #F0EDD3;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

#section2 {
 	width: 1250px;
 	height: 200px;
 	background-color: #F0EDD3;
	margin: 0 auto;
 	display: flex;
 	flex-direction: column;
  	align-items: center;
}

#section2 h1 {
	color: #00703C;
	font-size: 48px;
}

#section2 p {
	text-align: center;
	color: #000000;
	margin: 10px 200px;
	font-size: 18px;
	border-bottom: 2px solid black;
	padding-bottom: 15px;
}

#section3 {
	width: 1250px;
	height: 300px;
  	background-color: #F0EDD3;
	margin: 0 auto;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}

form {
  	width: 600px;
  	background-color: #FFFFFF;
  	border-radius: 10px;
  	padding: 20px;
  	display: flex;
  	flex-direction: column;
  	gap: 15px;
}

input {
  	padding: 10px;
  	border: 1px solid #CCCCCC;
  	border-radius: 5px;
  	font-size: 16px;
}

button {
  	width: 100px;
  	padding: 10px;
  	background-color: #00703c;
  	color: white;
  	border: none;
  	border-radius: 5px;
  	font-size: 16px;
  	align-self: center;
 	cursor: pointer;
}

button:hover {
  	background-color: #005A2A;
}

#footer {
  	width: 1250px;
  	height: 250px;
  	background-color: #999999;
	margin: 0 auto;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
}

#footer a {
  	color: #FFFFFF;
}

#footer a:hover {
  	color: #333333;
}

#footer a:active {
  	color: #00703C;
}

.left-section, .right-section {
  	color: #FFFFFF;
}

.left-section {
  	text-align: left;
	margin-left: 200px;
}

.right-section {
  	text-align: right;
	margin-right: 200px;
}