/* Menu Footer Styles */
.footer-nav {
	display: flex;
	justify-content: center;
	margin: 15px 0;
}

.footer-menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	text-align: center;
}

.footer-menu li {
	display: block;
	width: 100%;
}

.footer-menu a {
	display: block;
	color: #fff;
	/* White menu text */
	text-decoration: none;
	padding: 5px 0;
	font-size: 16px;
	font-weight: bold;
	transition: color 0.3s;
}

@media (max-width: 768px) {
	.footer-menu {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

.footer-menu a:hover {
	color: #555;
	text-decoration: underline;
}