/* Footer */
footer {
	background-color: #1A1A1A;
	color: white;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #ccc;
}

.footer-column ul li a:hover {
	color: var(--primary-color);
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(0, 103, 165, 0.8);
	border-radius: 50%;
	color: white;
	transition: all 0.3s ease;
	box-shadow: var(--blue-shadow);
}

.social-links a:hover {
	background-color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 0 12px rgba(211, 255, 58, 0.5);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: #ccc;
	font-size: 0.9rem;
}

