footer {
	background-color: var(--color1);
	text-align: center;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

footer a {
	color: var(--color4);
	text-decoration: none;
	transition: color 0.3s ease;
}

footer a:hover {
	color: var(--color2);
}

footer p {
	margin: 10px 0 10px 0;
}

.top-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 960px;
	width: 100%;
	padding: 20px 0 10px 0;
	box-sizing: border-box;
}

/* Style pour le bloc de copyright */
.footer-content {
	display: flex;
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}
.copyright {
	font-family: var(--font4);
	font-weight: 600;
	font-style: normal;
	font-size: var(--size1);
	letter-spacing: 0.8px;
	color: var(--color6);
	text-transform: none;
}

/* En responsive, placer le bloc partenaires sous le bloc médias sociaux */
@media screen and (max-width: 960px) {
	.top-footer {
		flex-direction: column; /* Les éléments seront empilés verticalement */
	}
}