/* Algemene sectiestyling */
.section-title {
	font-size: 1.8em;
	font-weight: 700;
	margin-bottom: 10px;
}

.section-desc {
	color: #777;
	margin-bottom: 15px;
}

/* Actieknop */
.button-primary {
	background: #385F85;             /* nieuwe basiskleur */
	color: #fff !important;
	border-radius: 6px;
	padding: 6px 12px;
	font-weight: normal;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
	transition: background 0.15s ease;
}

/* Hover – subtiel donkerder variant van #385F85 */
.button-primary:hover {
	background: #2f4f70;             /* iets donkerder, geen felheid */
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
}

/* Klik / Active / Focus – nog iets donkerder, maar consistent */
.button-primary:active,
.button-primary:focus,
.button-primary:focus:active {
	background: #263f57 !important;  /* donkerste tint, nooit grijs */
	color: #fff !important;
	box-shadow: none !important;
	text-shadow: none !important;
	filter: none !important;
	outline: none !important;
}

.button-primary:focus-visible {
	outline: none !important;
}

/* Partner Cards */
.partner-card {
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
}

/* Partner titel */
.partners-title {
	font-size: 1.4em;
	font-weight: bold;
	display: block;
	margin-bottom: 6px;
}

.partner-counter {
	color: #696969;
	margin: 4px 0;
}

.partner-text {
	margin-top: 10px;
	color: #444;
}

/* Logo box */
.partners-logo {
	text-align: center;
	background-color: #1464B1;
	padding: 12px;
	margin: 10px 0;
	border-radius: 8px;
	border: 1px solid #666;
	box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.partners-logo-img {
	max-width: 100%;
	max-height: 80px;
	object-fit: contain;
}

/* Formulieren */
.form-panel .form-section legend {
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 10px;
}

.form-row {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.input-long,
.textarea-long {
	width: 100%;
	padding: 8px;
	border-radius: 5px;
	border: 1px solid #ccc;
	font-size: 1em;
}

@media (min-width: 700px) {
	.form-row {
		flex-direction: row;
	}
	.form-row dt {
		width: 240px;
	}
	.form-row dd {
		flex: 1;
	}
}
