:root {
  --primary-color: #0073e6;
  --font-family: 'Inter', sans-serif;
  --max-width: 1024px;
  --text-color: #2b2b2b;
  --bg-color: #ffffff;
  --accent-bg: #f0f4ff;
  --border-color: #ddd;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.7;
  font-size: 16px;
}

#wrapper {
  max-width: 100%;
  overflow: hidden;
}

main.seo-content {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 3rem 2rem 2rem;
  background: var(--bg-color);
  border-bottom: 1px solid #eee;
}

h1,
h2,
h3 {
  color: #111;
  line-height: 1.3;
  margin-top: 2rem;
}

h1 {
  font-size: 2.1rem;
  font-weight: 700;
	text-transform: capitalize;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

p,
li {
  margin-bottom: 1rem;
}

ul,
ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.hero {
	background: linear-gradient(to right, rgba(26, 115, 232, 0.6), rgba(26, 115, 232, 0.6)), url('/tool/assets/kovii-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 1rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  //background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  padding: 1rem;
  z-index: 2;
  position: relative;
  text-align: center;
}

.hero-logo {
  width: 190px;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin: 0.5rem 0;
	color: #FFF;
	text-transform: capitalize;
}

.hero-text p {
  font-size: 1.25rem;
  margin: 0.5rem auto 2rem;
  max-width: 700px;
}

.cta-button {
  background-color: #00C48C;
  color: #FFF;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.cta-button:hover {
  background-color: #00b07e;
}

section#leadform {
  background: var(--accent-bg);
  padding: 3.5rem 1rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  margin-bottom: 4rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

section#leadform h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 5rem;
}

form input,
form textarea,
form button,
form select {
  display: block;
  width: 100%;
  margin: 0.75rem auto;
  padding: 1.25rem 1.5rem;
  max-width: 600px;	
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
form input,
form textarea,
form button,
form select {
	display: block;
	width: 100%;
	max-width: 100%
	margin: 0 auto;
	}
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  background-color: #00C48C;
  color: white;
  font-weight: bold;
  border: none;
  transition: var(--transition);
}

#prevStep {
color: #A6A6A6;
background-color: #FFF;
border: 2px solid #A6A6A6 !important;
}

form button:hover {
  background-color: #00b07e;
}

.form-step {
	padding: 4rem;
}

.form-step label {
  display: block;
  font-weight: 600;
  font-size: 1.30rem;
  margin: 0.5rem 1rem 0.25rem;
  text-align: center;
  color: #222;
}

.form-step input[type="text"] {
  text-align: center;
  font-size: 1.2rem;
  padding: 0.75rem 1.25rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.step-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 8px;
}

.step-progress div {
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.step-progress div.active {
  background-color: var(--primary-color);
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.intro-text {
  font-size: 1.2rem;
  color: #444;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.wizard-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.wizard-nav button {
  background: #00C48C;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
	min-width: 140px;
}

.wizard-nav button:hover {
  background: #00b07e;
}

.wizard-nav button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.step-intro {
	text-align: center;
}

/* Responsive Markdown-tabellen */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* vloeiende scroll op iOS */
  margin: 1em 0;
}
.table-responsive table {
  width: 100%;
  min-width: 600px;       /* voorkom te krappe kolommen */
  border-collapse: collapse;
}
.table-responsive th,
.table-responsive td {
  padding: 0.75em;
  border: 1px solid #ddd;
  white-space: nowrap;    /* voorkomt dat cellen extreem hoog worden */
  text-align: left;
}
.table-responsive th {
  background-color: #f5f5f5;
}

/* FAQ dropdown */

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.faq-item summary {
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.faq-item summary::after {
  content: '➕';
  position: absolute;
  right: 0;
  top: 0;
}

.faq-item[open] summary::after {
  content: '➖';
}

.faq-body {
  margin-top: 0.75rem;
  padding-left: 0.5rem;
  color: #444;
}

img.content-img {
  display: block;
  margin: 2em auto;
  width: 50%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

img.content-img:hover {
  transform: scale(1.02);
}
.site-header {
  background-color: #fff;
  padding: 1em 2em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  width: 90px;
}

.header-cta {
  background-color: #00C48C;
  color: #fff;
  padding: 0.6em 1em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.header-cta:hover {
  background-color: #00b07e;
}
.site-footer {
  background-color: #f8f9fa;
  padding: 3em 1.5em 2em;
  font-size: 0.95em;
  color: #333;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
}

.footer-block h4 {
  font-size: 1.1em;
  margin-bottom: 0.6em;
}

.footer-block ul {
  list-style: none;
  padding: 0;
}

.footer-block ul li a {
  text-decoration: none;
  color: #333;
}

.footer-block ul li a:hover {
  text-decoration: underline;
}

.footer-logo {
	margin-top: 15%;
	width: 90px;
}

.footer-bottom {
  margin-top: 2em;
  text-align: center;
  font-size: 0.85em;
  color: #777;
}

/* progress steps */

.step-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.step-progress div {
  flex: 1;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.step-progress div.active {
  background: var(--primary-color);
}

form select {
  /* Verwijder native styling */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;

  /* Jouw padding en restyle */
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  background-color: #fff;

  /* Optioneel: eigen pijltje rechts plaatsen */
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='6'><path fill='%23666' d='M0,0 L6,6 L12,0 Z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 6px;
}




