/* Layout styles - Grid, containers, page structure */
body {
	margin: 0;
	padding: 0;
}

#container {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

#content {
	width: 100%;
	overflow-x: hidden;
	position: relative;
}

/* Footer */
.footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0px;
	position: relative;
	width: 100%;
	/* max-width: 1440px; */
	height: 194px;
	margin: 0 auto;
	background: #F99B27;
}

.footer-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 24px;
	width: 100%;
	flex-wrap: wrap;
}

.footer-link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.2s;
}

.footer-link:hover {
	opacity: 0.8;
	text-decoration: underline;
}

.footer-access {
	display: flex;
	justify-content: center;
	width: 100%;
	color: #FFFFFF;
	font-size: 14px;
	margin-top: 16px;
}

.footer-copyright {
	display: flex;
	justify-content: center;
	width: 100%;
	color: #FFFFFF;
	font-size: 14px;
	margin-top: 8px;
}
