/* FOOTER */
footer {
	background-color: #1a1a1a;
	color: #fff;
	text-align: center;
	padding: 30px 0;
	margin-top: 40px;
}

.footer-links {
	margin-bottom: 20px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	margin: 0 15px;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--white);
}

.footer-disclaimer {
	font-size: 0.85rem;
	color: #888;
	max-width: 800px;
	margin: 0 auto 30px;
}

.footer-logos {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.footer-logos img {
	height: 40px;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.footer-logos img:hover {
	opacity: 1;
}

.copyright {
	color: #666;
	font-size: 0.9rem;
}

.footer-credit {
	color: rgba(255, 255, 255, 0.25);
	font-size: 0.78rem;
	margin-top: 6px;
}

.footer-credit a {
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.footer-credit a:hover {
	color: #fff;
}

@media (max-width: 768px) {
	.footer-links {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.footer-links a {
		margin: 0;
	}
}
