.benodigdheden-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 52px 48px;
}

.benodigdheden-grid-bottom {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 0;
}
.benodigdheden-grid-bottom .benodigdheden-item {
	width: 50%;
}
.benodigdheden-outer {
	background: #ffffff;
	padding: 60px 200px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.benodigdheden-wrapper {
	background: #ebebeb;
	border-radius: 2px;
	padding: 60px 72px 80px;
	box-sizing: border-box;
	max-width: 1145px;
}

.benodigdheden-header {
	margin-bottom: 40px;
}

.benodigdheden-header h2 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #111111;
	margin: 0 0 6px 0;
	line-height: 1.15;
}

.benodigdheden-subheading {
	color: #aaaaaa;
	font-size: 1.2rem;
	display: block;
	font-weight: 400;
}

.benodigdheden-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 52px 48px;
    padding-bottom:40px;
}

.benodigdheden-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.benodigdheden-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.icon-info {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 42px;
	color: #222222;
	font-style: italic;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
	font-weight: 400;
	background: transparent;
	line-height: 1;
	flex-shrink: 0;
}

.benodigdheden-content {
	flex: 1;
}

.benodigdheden-content h3 {
	color: #cc00cc;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 10px 0 10px 0;
	line-height: 1.2;
}

.benodigdheden-content div,
.benodigdheden-content p {
	color: #666666;
	font-size: 0.9rem;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 1200px) {
	.benodigdheden-outer {
		padding: 48px 60px;
	}
	.benodigdheden-wrapper {
		padding: 52px 56px;
	}
}

@media (max-width: 1000px) {
	.benodigdheden-outer {
		padding: 40px 32px;
	}
	.benodigdheden-wrapper {
		padding: 44px 40px;
	}
	.benodigdheden-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px 32px;
	}
}

@media (max-width: 600px) {
	.benodigdheden-outer {
		padding: 24px 12px;
	}
	.benodigdheden-wrapper {
		padding: 32px 24px;
		border-radius: 2px;
	}
	.benodigdheden-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.benodigdheden-grid-bottom {
		flex-direction: column;
		gap: 28px;
	}
	.benodigdheden-grid-bottom .benodigdheden-item {
		width: 100%;
	}
}