.footer {
	background: #111;
	color: #ccc;
	padding: 40px 20px;
	margin-top: 40px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.footer h4 {
	color: white;
	margin-bottom: 10px;
}

.footer a {
	display: block;
	color: #ccc;
	text-decoration: none;
	margin-bottom: 6px;
}

.footer a:hover {
	color: #e60023;
}

.footer-bottom {
	text-align: center;
	margin-top: 30px;
	font-size: 13px;
	color: #777;
}