/* This is some default stuff */

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

/* Dit is voor arceringen */
mark {
	background-color: transparent;
	color: inherit;
}

/* Iets voor Firefox */
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	body {
		background: var(--bg-main);
	}

	body.is-preload *, body.is-preload *:before, body.is-preload *:after {
		-moz-animation: none !important;
		-webkit-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
		-moz-transition: none !important;
		-webkit-transition: none !important;
		-ms-transition: none !important;
		transition: none !important;
	}

	body, input, textarea, select {
		font-family: 'Open Sans', sans-serif;
		color: var(--text-main);
		background: var(--bg-main);
		font-weight: 400;
		font-size: 13pt;
		line-height: 1.8;
	}

	h1, h2, h3, h4, h5, h6 {
		font-family: 'Open Sans Condensed', sans-serif;
		text-align: center;
		font-weight: 700;
		color: var(--text-heading);
		margin: 0 0 var(--space-4);
		text-transform: uppercase;
	}

	h1 { font-size: 2.1rem; }
    h2 { font-size: 1.7rem; }
	    h2.major {
			position: relative;
			border-top: solid 5px var(--bg-alt);
			font-size: 1.65em;
			text-align: center;
			margin: 0 0 3em 0;
			top: 1em;
		}

			h2.major span {
				background: var(--bg-white);
				position: relative;
				display: inline-block;
				top: -.6em;
				padding: 0 1.25em 0 1.25em;
			}

    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
	
	a {
        color: var(--link-color);
        text-decoration: none;
        transition: 0.15s ease;
    }
        a:hover {
            color: var(--link-hover);
            text-decoration: underline;
        }




	b, strong {
		font-weight: 700;
		color: var(--text-secondary);
	}

	i, em {
		font-style: italic;
	}

	br.clear {
		clear: both;
	}

	p, ul, ol, dl, table {
		margin: 0 0 var(--space-4);
		color: var(--text-main);
	}

/* Section/Article */

	section, article {
		margin-bottom: 2em;
	}

		section > :last-child, section:last-child, article > :last-child, article:last-child {
			margin-bottom: 0;
		}

	header > p {
		display: block;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--text-muted);
	}

 /* Flexbox for form fields */
      .fields {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
      }
    
      /* Half-width fields for larger screens */
      .field.half {
        flex: 1 1 calc(50% - 15px);
      }
    
      /* Ensure fields take full width on mobile */
      .field {
        flex: 1 1 100%;
      }
    
      /* Adjust layout for small screens (mobile first) */
      @media (max-width: 736px) {
        .field.half {
          flex: 1 1 100%;
        }
      }
	
