/* General Footer Styling */
.footer-container {
	background-color: MidnightBlue;
	margin-bottom: 0;
	padding: 30px 20px;
	color: white;
}

/* Columns */
.footer-column h5 {
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.footer-column ul {
	list-style-type: none;
	padding: 0;
}

.footer-column ul li {
	margin-bottom: 8px;
}

.footer-column ul li a {
	color: white;
	text-decoration: none; /* No underline */
}

.footer-column ul li a:hover {
	color: CornflowerBlue; /* Hover effect */
	text-decoration: none; /* No underline on hover */
}

/* Divider */
.footer-divider {
	height: 50px;
}

/* Ownership Section */
.footer-ownership h6 {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 5px;
}

.footer-ownership a {
	color: white;
	text-decoration: none; /* No underline */
}

.footer-ownership a:hover {
	color: CornflowerBlue; /* Hover effect */
	text-decoration: none; /* No underline on hover */
}

/* Back to Top Button */
.back-to-top {
	color: white;
	font-size: 1.5em;
	margin-top: 5px;
}

.back-to-top:hover {
	color: CornflowerBlue; /* Hover effect */
	text-decoration: none; /* No underline */
} 