#how-i-can-help, #unique-about-me {
	margin: 60px 0px;
	padding: 30px;
	border-radius: 0;
	background-color: transparent;

}

#help-steps {
	margin: 20px -30px;
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
}

.help-step {
	background-color: color-mix(in oklab, var(--lavender-2) 50%, white);
	padding: 40px;
	border-radius: 30px;

	position: relative;
	background-image: url('../img/logo-symbol-large.png');
	background-size: 1000px 500px;
	background-repeat: no-repeat;
	background-blend-mode: overlay;
	background-position: -450px -10px;
}

.help-step-number {
	font-size: 90px;
	font-weight: 800;
	position: absolute;
	top: -2px;
	left: 30px;
	color: var(--fuschia);
}

.help-step-title {
	margin-left: 70px;
	font-size: 30px;
	font-weight: 800;
	margin-top: 20px;
}

.help-step p {
	margin-left: 70px;
	margin-top: 10px;
	font-size: 30px;
	text-wrap: balance;
}


@media (max-width: 1400px){
	#help-steps {
		max-width: 800px;
		grid-template-columns: 1fr;
		margin: 20px auto;
	}
}


@media (max-width: 850px){
	#how-i-can-help, #unique-about-me {
		padding: 0;
	}

	#help-steps {
		gap: 20px;
	}

	.help-step-number {
		font-size: 60px;
		top: 10px;
	}

	.help-step-title, .help-step p {
		font-size: 20px;
		margin-left: 55px;
	}
	.help-step-title {
		margin-top: 12px;
	}

}