.complement_section {
	width: 100%;
	padding: 0 20px 60px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.complement_section_intro{
	color: var(--blue);
	font-size: 1rem;
	margin: 0;
	margin-bottom: 32px;
	width: 100%;
	text-align: center;
}
.complement_section_title{
	margin: 0;
	width: 100%;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 80px;
}
.complement_list_container{
	width: 100%;
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}
.complement{
	width: 100%;
	margin-bottom: 32px;
}
.complement h4{
	margin: 0;
	font-size: 1.7rem;
	padding-left: 24px;
	position: relative;
}
.complement h4::before{
	content: "";
	width: 16px;
	height: 16px;
	background-color: var(--blue);
	position: absolute;
	left: 0;
	top: 6px;
}
.complement p{
	font-size: 1.1rem;
	line-height: 1.4rem;
}
@media (min-width: 900px) {
.complement{
	width: 45%;
}
}