* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #0b1f3a;
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #08162a;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.logo {
  font-weight: bold;
}

/* BUTTONS */
.btn {
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}

.primary {
  background: #d4af37;
  color: black;
}

.secondary {
  border: 1px solid white;
  color: white;
}

/* HERO */
.hero {
  position: relative;
  padding: 120px 0;
  background: #111; /* vervang met afbeelding */
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  max-width: 600px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.buttons {
  margin-top: 20px;
}

/* SERVICES */
.services {
  background: #f5f5f5;
  color: black;
  padding: 60px 0;
}

.cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
}

.img {
  height: 150px;
  background: #ccc;
  margin-bottom: 15px;
}

/* WHY */
.why {
  padding: 40px 0;
}

.why-grid {
  display: flex;
  justify-content: space-between;
}

/* CTA */
.cta {
  background: #d4af37;
  color: black;
  padding: 50px 0;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #08162a;
  padding: 20px 0;
  text-align: center;
}




/* SMALL HERO */
.small-hero {
  padding: 80px 0;
}

/* ABOUT PAGE */
.about-page {
  background: #f5f5f5;
  color: black;
  padding: 60px 0;
}

.about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-page ul {
  margin-top: 15px;
}

/* MISSION */
.mission {
  padding: 60px 0;
  text-align: center;
}


/* SERVICES PAGE */
.services-page {
  background: #f5f5f5;
  color: black;
  padding: 60px 0;
}

.service-block {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block ul {
  margin-top: 15px;
}

/* PROCESS PAGE */
.process-page {
  background: #f5f5f5;
  color: black;
  padding: 60px 0;
}

.step-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-number {
  background: #d4af37;
  color: black;
  font-size: 24px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* JOBS PAGE */
.jobs-page {
  background: #f5f5f5;
  color: black;
  padding: 60px 0;
}

.job-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.job-card ul {
  margin: 15px 0;
}

/* CONTACT PAGE */
.contact-page {
  background: #f5f5f5;
  color: black;
  padding: 60px 0;
}

.contact-grid {
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form textarea {
  min-height: 100px;
}