

/* Ensure footer links are in a horizontal row */
.footer-links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
.footer-links a {
	color: #909497;
	text-decoration: none;
	padding: 5px 10px;
	transition: color 0.3s;
}
.footer-links a:hover {
	color: #000;
	text-decoration: underline;
}
