body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}
.container {
	width: 80%;
	margin: auto;
	overflow: hidden;
	padding: 20px;
}
header {
	background: #35424a;
	color: #ffffff;
	padding-top: 30px;
	min-height: 70px;
	border-bottom: #e8491d 3px solid;
	position: relative;
}
header h1 {
	margin: 0;
	text-align: center;
}
.section {
	padding: 20px 0;
	background: #f4f4f4;
	margin-bottom: 20px;
}
.section h2 {
	text-align: center;
}
.image-container {
	text-align: center;
	margin: 20px 0;
}
.image-container img {
	max-width: 100%;
	height: auto;
}
form {
	background: #ffffff;
	padding: 20px;
	border-radius: 5px;
}
form input[type="text"],
form input[type="email"],
form textarea {
	width: 100%;
	padding: 8px;
	margin-bottom: 10px;
}
form button {
	display: block;
	width: 100%;
	padding: 10px;
	background: #e8491d;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
form button:hover {
	background: #333333;
}
.auth-button {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 10px 20px;
	background-color: #e8491d;
	color: #ffffff;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s;
}
.auth-button:hover {
	background-color: #ff6347;
}
@media (max-width: 768px) {
	.auth-button {
		top: 10px;
		right: 10px;
		padding: 5px 10px;
		font-size: 0.9em;
	}
}