footer {
	padding: 60px 45px 20px;
	color: #fff;
}
footer .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
}
footer .section {
	flex: 1 1 200px;
	min-width: 180px;
}
footer .section h4 {
	margin-bottom: 15px;
	font-size: 18px;
}
footer .section ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
footer .section ul li a {
	opacity: 0.8;
	transition: opacity 0.2s ease;
}
footer .section ul li a:hover {
	opacity: 1;
}
footer .section.brand img {
	height: 50px;
	margin-bottom: 15px;
	filter: brightness(0) invert(1);
}
footer .section.brand p {
	opacity: 0.8;
	line-height: 1.5;
}

footer .bottom {
	border-top: 1px solid rgba(255,255,255,0.2);
	margin-top: 40px;
	padding-top: 20px;

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
footer .bottom p {
	opacity: 0.7;
	font-size: 14px;
}
footer .socials {
	display: flex;
	gap: 15px;
}
footer .socials img {
	width: 20px;
	filter: brightness(0) invert(1);
	transition: transform 0.2s ease;
}
footer .socials img:hover {
	transform: translateY(-3px);
}
@media (max-width: 768px) {
	footer .container {
		flex-direction: column;
		align-items: flex-start;
	}
	footer .bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}