/* footer */

/* Reset voor body en html */
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

/* Universeel box-sizing */
*, *::before, *::after {
	box-sizing: inherit;
}

/* Footer styling */
#footer {
	background-color: #003566;
	color: #ffffff;
	padding: 40px 20px;
	font-family: 'Segoe UI', sans-serif;
	width: 100vw; /* Volledige viewport breedte */
}

/* Footer secties */
#footer section {
	margin-bottom: 30px;
}

/* Titel in de footer */
#footer h2 {
	color: #ffffff;
	font-size: 1.5em;
	margin-bottom: 10px;
}

/* Tekst en definities */
#footer p,
#footer dd,
#footer dt {
	color: #dddddd;
	font-size: 0.95em;
	line-height: 1.6em;
}

/* Alternatieve definities */
#footer dl.alt {
	margin: 0;
	padding: 0;
}

#footer dl.alt dt {
	font-weight: bold;
	margin-top: 10px;
}

#footer dl.alt dd {
	margin-left: 0;
}

/* Links */
#footer a {
	color: #ffffff;
	text-decoration: underline;
}

#footer a:hover {
	color: #00aaff;
}

/* Copyright sectie */
#footer .copyright {
	margin-top: 30px;
	font-size: 0.85em;
	color: #aaaaaa;
	text-align: center;
}

/* Responsive layout */
@media screen and (min-width: 768px) {
	#footer section {
		max-width: 600px;
		margin: 0 auto 30px auto;
	}
}

/* form contact */

section#five dl.contact-details {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 20px 25px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	font-family: 'Segoe UI', sans-serif;
}

section#five dl.contact-details dt {
	font-weight: 600;
	color: #003566;
	margin-top: 15px;
	font-size: 1em;
}

section#five dl.contact-details dd {
	margin-left: 0;
	margin-bottom: 10px;
	color: #333;
	font-size: 0.95em;
	line-height: 1.5em;
}

section#five dl.contact-details a {
	color: #0077cc;
	text-decoration: none;
}

section#five dl.contact-details a:hover {
	color: #00aaff;
	text-decoration: underline;
}

/* Our workflow */

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-right: 12px;
  flex-shrink: 0;
}

.workflow-text h3 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-title {
  font-weight: 600;
  color: #111827; /* donkergrijs voor contrast */
}


.workflow-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.workflow-step::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb; /* lichtgrijs */
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
}


.step-number {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* ---------- Titels met gradient lijn ---------- */

header.major {
  display: flex;            
  flex-direction: column;     
  justify-content: center;    
  align-items: center;        
  text-align: center;         
  min-height: 200px;          
}

/* Stijl voor de h2 en de onderlijn */
header.major h2 {
  position: relative;
  display: inline-block;      
  margin: 0;                  
  padding: 0;
}

/* Gradient-lijn onder de titel */
header.major h2::after {
  content: "";
  display: block;
  margin: 0.5em auto 0 auto;  /* ruimte boven de lijn */
  width: 4em;                 /* lengte van de lijn */
  height: 3px;                /* dikte van de lijn */
  border-radius: 2px;
  background: linear-gradient(90deg, #58a6ff, #373aff);
}




