.subtle_underline{
    border-bottom: 3px solid var(--main-color-reduced);
}

/* About sectie */
.about-section {
	background-color: rgba(0, 0, 0, 0.03);
	padding: 40px 20px;
	text-align: center;
	font-family: var(--font-family);
	color: var(--text-color);
	max-width: 1200px;
	margin: 40px auto;
}

.about-title {
	color: var(--main-color);
	font-size: 22px;
	margin-bottom: 10px;
	font-weight: 700;
	letter-spacing: 1px;
}

.about-subtitle {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--text-color);
	font-weight: 600;
}

.about-description {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 30px;
	color: var(--text-color);
	max-width: 1000px;
	text-align: left;
}

@media screen and (max-width: 768px) {
	.about-title {
		font-size: 20px;
	}

	.about-subtitle {
		font-size: 26px;
	}

	.about-description {
		font-size: 16px;
		line-height: 26px;
	}

	.about-button {
		font-size: 14px;
		padding: 10px 20px;
	}
}

@media screen and (max-width: 480px) {
	.about-title {
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 1px;
		padding-top: 0 !important;
	}
	
	.about-subtitle {
		font-size: 20px;
		color: var(--text-color);
		font-weight: 600;
	}

	.about-description {
		font-size: 15px;
		line-height: 24px;
	}
}

/* Uitgelicht project */
.featured-project {
	padding: 40px 20px;
	background-color: rgba(0, 0, 0, 0.03);
}

.featured-project-content {
	display: flex;
	gap: 30px;
	margin-top: 20px;
}

.featured-project-image {
	flex: 1 1 300px;
	max-width: 400px;
	min-width: 250px;
	border-radius: 12px;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.featured-project-text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
}

.featured-project .project-button {
	align-self: flex-start;
	text-decoration: none;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 600;
	transition: background-color 0.3s ease, color 0.3s ease;
	font-size: 17px;
}

.featured-project .project-button:hover {
	background-color: var(--main-color);
	color: #ffffff;
}

@media (max-width: 768px) {
	.featured-project-content {
		flex-direction: column;
	}
	.featured-project-text {
		align-items: flex-start;
	}
	
	.featured-project-image {
		min-width: 200px;
	}
	
	.featured-project .project-button {
		padding: 5px 10px;
		border-radius: 6px;
		font-size: 14px;
	}
}
  
/* Diensten sectie */
.services-section {
	background-color: rgba(0, 0, 0, 0.03);
	padding: 40px 20px;
	text-align: center;
	font-family: var(--font-family);
	color: var(--text-color);
	max-width: 1200px;
	margin: 40px auto;
}

.services-list {
	list-style-type: none;
	padding: 0;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	max-width: 1000px;
}

.service-item {
	background-color: #ffffff;
	padding: 20px 0;
	border: 1px solid var(--background-shadow-color);
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	.services-title {
		font-size: 22px;
	}

	.service-item {
		font-size: 16px;
		padding: 16px;
	}
}

@media screen and (max-width: 500px){
	.services-list {
		list-style-type: none;
		padding: 0;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 1fr 1fr; /* This creates two columns of equal width */
		gap: 10px;
	}
	
	.services-title {
		font-size: 16px;
	}
	
	.service-item {
		font-size: 12px;
	}
}

@media screen and (max-width: 425px){
	.service-item{
		max-height: 50px;
	}
}

@media screen and (max-width: 375px){
	.services-list {
		gap: 5px;
	}
	
	.services-title {
		font-size: 13px;
	}
	
	.service-item {
		font-size: 8px;
	}
}
