* {
	box-sizing: border-box;
}

body, html {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	background-color: #f9f9f9;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, a, button {
	font-family: 'Poppins', sans-serif;
}

.header {
	position: relative;
	width: 100%;
	height: 300px;
	background-image: url('office.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 60px 20px;
	text-align: left;
	color: white;
}

.header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 51, 104, 0.644);
	z-index: 1;
}

.header-text, .header-subtext, .search-bar {
	position: relative;
	z-index: 2;
	margin-left: 10%;
}

.header-text {
	font-size: 34px;
	font-weight: bold;
	margin-bottom: 10px;
}

.header-subtext {
	font-size: 24px;
	margin-bottom: 20px;
}

.search-bar {
	width: 60%;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-bar input[type="text"],
.search-bar input[type="number"] {
	padding: 13px 15px;
	border-radius: 5px;
	border: 1px solid #ccc;
	font-size: 16px;
	margin-right: 10px;
}

.search-bar input[type="text"] {
	width: 30%;
}

.search-bar input[type="number"] {
	width: 15%;
}

.search-bar button {
	padding: 13px 20px;
	background-color: #AD7E33;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 20px auto;
	background-color: #f9f9f9;
	border-radius: 10px;
	overflow-x: hidden;
	padding: 20px;
}

.card-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 20px;
}

.card {
	flex: 1 1 calc(25% - 20px);
	height: 550px;
	background-color: #FFF;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card h3 {
	margin: 0 0 10px 0;
	color: #003368;
}

.card p {
	margin: 5px 0;
	color: #003368;
	font-weight: 700;
	font-size: 12px;
}

.card .description {
	font-size: 13px;
	color: #555;
	margin-top: 10px;
	flex-grow: 1;
	font-weight: 300;
	color: #003368;
}

.card .details {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #333;
}

.card .details-left {
	text-align: left;
}

.card .details-right {
	text-align: right;
}

.card button {
	width: 100%;
	padding: 10px;
	background-color: #003368;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

/* Media Queries voor betere responsiviteit */
@media (max-width: 1024px) {
	.card-container {
		gap: 15px;
	}
	.card {
		flex: 1 1 calc(33.33% - 15px);
		height: auto;
	}
}
/* Mobiel aanpassingen */
@media (max-width: 768px) {
	.search-bar {
		display: flex;
		flex-direction: column; /* Plaats de invoervelden en de knop onder elkaar */
		width: 90%; /* Verminder de breedte van de zoekbalk op mobiel */
		margin-left: auto;
		margin-right: auto;
	}

	.search-bar input[type="text"],
	.search-bar input[type="number"] {
		width: 100%; /* Zorg ervoor dat de invoervelden 100% breed zijn */
		margin-right: 0;
		height: 40px;
	}

	.search-bar button {
		width: 100%; /* Maak de knop even breed als de invoervelden */
		margin-top: 10px; /* Voeg ruimte toe boven de knop */
		height: 40px;
		line-height: 50%; /* Zorgt ervoor dat de tekst verticaal gecentreerd is */
	}

	.header-text {
		font-size: 24px; /* Maak de header-tekst iets kleiner op mobiel */
		margin-top: 10px;
		padding: 5px;
	}

	.header-subtext {
		font-size: 14px; /* Maak de subtekst ook iets kleiner op mobiel */
	}
}

@media (max-width: 480px) {
	.card-container {
		flex-direction: column;
		gap: 10px;
	}
	.card {
		flex: 1 1 100%;
		height: auto;
	}
	.search-bar {
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.search-bar input[type="text"], .search-bar input[type="number"] {
		width: 100%;
		margin: 5px 0;
	}
	.search-bar button {
		width: 100%;
		margin-top: 10px;
	}
}