/* SECTION SUIVEZ-NOUS */
.follow-us {
	background: #fafafa;
	padding: 45px 20px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.follow-wrapper {
	max-width: 1100px;
	margin: auto;
}

.follow-us h2 {
	font-size: 22px;
	font-weight: 700;
	color: #2b2628;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 25px;
}

/* ICONES */
.follow-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.follow-icons .icon svg {
	transition: transform 0.2s, opacity 0.2s;
	cursor: pointer;
}

.follow-icons .icon:hover svg {
	transform: translateY(-3px);
	opacity: 0.8;
}

/* TEXTE INFO SUPPORT */
.support-info {
	font-size: 14px;
	color: #555;
	margin-bottom: 18px;
	font-family: 'Open Sans', sans-serif;
}

/* CTA ROW */
.support-cta-row {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

/* CTA WHATSAPP */
.whatsapp-cta {
	display: inline-block;
	background: #25D366;
	color: #fff;
	padding: 12px 26px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}

.whatsapp-cta:hover {
	background: #1eb656;
	transform: translateY(-2px);
}

/* CTA EMAIL */
.email-cta {
	display: inline-block;
	background: #e9302a;
	color: #fff;
	padding: 12px 26px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}

.email-cta:hover {
	background: #c02723;
	transform: translateY(-2px);
}

/* RESPONSIVE */
@media ( max-width : 600px) {
	.follow-us h2 {
		font-size: 20px;
	}
	.support-info {
		font-size: 13px;
	}
	.whatsapp-cta, .email-cta {
		width: 100%;
		text-align: center;
	}
}