body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #0C5345;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0C5345;
  color: white;
  padding: 20px 40px;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: white;
}
.navbar .logo img {
  height: 36px;
  width: auto;
}
.navbar .logo:hover {
  color: #FFD65A;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar .nav-links a {
  color: white;
  text-decoration: none;
}
.navbar .nav-links a:hover,
.navbar .nav-links .active {
  color: #FFD65A;
}

/* HERO (Thuispagina) */
.hero {
  background: #0C5345;
  color: white;
  text-align: left;
  padding: 100px 40px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  color: #FFD65A;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  background: #00A86B;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-weight: 600;
}
.btn:hover {
  background: #008f5b;
}

/* SPLIT SECTION */
.split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  padding: 80px 40px;
  gap: 40px;
}
.split .left {
  flex: 1;
}
.split .left h2 {
  font-size: 2rem;
  margin: 0;
}
.divider {
  width: 2px;
  background: #ddd;
  height: 100px;
}
.split .right {
  flex: 1;
}
.qualities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.qualities-list li {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* SERVICES */
.services {
  text-align: center;
  padding: 60px 40px;
}
.services h2 {
  margin-bottom: 30px;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cards a.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 220px;
  height: 180px;
  background: white;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cards a.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #0C5345;
}
.card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* STEPS SECTION */
.steps-section {
  background: #0C5345;
  color: white;
  padding: 60px 40px;
  text-align: center;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.step {
  background: #008f5b;
  border-radius: 6px;
  padding: 15px;
  width: 150px;
  font-weight: 600;
  position: relative;
  cursor: help;
}
.step span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.link a {
  margin-top: 20px;
  color: #FFD65A;
  font-weight: bold;
  text-decoration: none;
}
.link a:hover {
  text-decoration: underline;
}

/* Tooltip */
.step::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: normal;
  width: 220px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 10;
}
.step::before {
  content: '';
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}
.step:hover::after,
.step:hover::before {
  opacity: 1;
}

/* FOOTER */
footer {
  background: #0A3D34;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* ------------------- OVER ONS PAGINA ------------------- */

/* Hero sectie */
.about-hero {
  background: #0C5345;
  color: white;
  padding: 120px 60px;
  text-align: left;
}
.about-hero .page-title {
  font-size: 4rem;   /* groot */
  font-weight: 700;
  margin: 0 0 20px 0;
}
.about-hero .subtitle {
  font-size: 2.2rem; /* vergelijkbaar met homepage slogan */
  font-weight: 500;
  margin: 0;
  color: white;
  line-height: 1.4;
}

/* Secties */
.about-section {
  padding: 80px 60px;
  background: white;
}
.about-section.alt {
  background: #f9f9f9;
}
.about-section h2 {
  font-size: 2rem;
  color: #0C5345;
  margin-bottom: 20px;
}
.about-section p {
  max-width: 900px;
  margin-bottom: 15px;
}
.about-section ul.values {
  list-style: disc inside;
  margin-top: 15px;
}
.about-section ul.values li {
  margin-bottom: 8px;
}

/* Layout splitsing */
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero {
    padding: 80px 20px;
  }
  .about-hero .page-title {
    font-size: 2.8rem;
  }
  .about-hero .subtitle {
    font-size: 1.5rem;
  }
  .about-section {
    padding: 60px 20px;
  }
  .split {
    grid-template-columns: 1fr;
  }
}
/* ------------------- DIENSTEN PAGINA ------------------- */

/* Hero */
.diensten-hero {
  background: #0C5345;
  color: white;
  padding: 120px 60px 80px 60px;
  text-align: left;
}
.diensten-hero .page-title {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.diensten-hero .subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 900px;
  line-height: 1.8;
  margin: 0;
}

/* Diensten blokken */
.diensten-blocks {
  background: #fff;
  padding: 80px 60px;
}
.diensten-blocks .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.diensten-blocks .card {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  padding: 25px;
  text-decoration: none;
  color: #0C5345;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.diensten-blocks .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.diensten-blocks .card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}
.diensten-blocks .card p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

/* Tarieven sectie */
.tarieven {
  background: #f9f9f9;
  padding: 80px 60px;
  text-align: left;
}
.tarieven h2 {
  color: #0C5345;
  font-size: 2rem;
  margin-bottom: 20px;
}
.tarieven p {
  max-width: 900px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .diensten-hero {
    padding: 80px 20px;
  }
  .diensten-hero .page-title {
    font-size: 2.8rem;
  }
  .diensten-hero .subtitle {
    font-size: 1rem;
  }
  .diensten-blocks {
    padding: 60px 20px;
  }
  .tarieven {
    padding: 60px 20px;
  }
}
/* Werkwijze hero */
.werkwijze-hero {
  background: #0C5345;
  color: white;
  padding: 100px 60px;
  text-align: left;
}
.werkwijze-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.werkwijze-hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 800px;
}

/* Stappen grid */
.stappen {
  background: white;
  padding: 80px 60px;
}
.grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}
.stap h2 {
  font-size: 1.5rem;
  color: #0C5345;
}
.stap h2 span {
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 8px;
}
.stap p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Wie doet het werk */
.wie-doet-het-werk {
  background: #f9f9f9;
  padding: 80px 60px;
}
.grid-2-cols.reverse {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}
.wie-doet-het-werk .text h2 {
  font-size: 1.8rem;
  color: #0C5345;
  margin-bottom: 20px;
}
.wie-doet-het-werk .text p {
  font-size: 1rem;
  line-height: 1.7;
}
.wie-doet-het-werk .image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .werkwijze-hero {
    text-align: center;
    padding: 80px 30px;
  }
  .werkwijze-hero h1 {
    font-size: 2.5rem;
  }
  .werkwijze-hero p {
    font-size: 1.1rem;
  }
}
/* Contactpagina */
.contact-hero {
  background: #0C5345;
  color: white;
  padding: 100px 60px;
  text-align: left;
}
.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.contact-hero p {
  font-size: 1.3rem;
  line-height: 1.6;
}

/* Contact inhoud */
.contact-content {
  background: white;
  padding: 80px 60px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: flex-start;
}
.contact-info h2,
.contact-form h2 {
  font-size: 1.5rem;
  color: #0C5345;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 1rem;
  margin-bottom: 15px;
}
.contact-info .icon {
  margin-right: 10px;
}

/* Formulier */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.contact-form button {
  background: #0C5345;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}
.contact-form button:hover {
  background: #094132;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero {
    padding: 80px 30px;
    text-align: center;
  }
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  .contact-hero p {
    font-size: 1.1rem;
  }
}
.info-block {
  margin-bottom: 30px;
}

.info-block h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #0C5345;
}

.info-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 80px 60px;
  gap: 60px;
}
.left,
.right {
  flex: 1;
}
.divider {
  width: 2px;
  background: #ddd;
  height: auto;
}
.qualities-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.qualities-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #0C5345;
}
.info-block {
  margin-bottom: 40px;
}
.info-block h3 {
  font-size: 1.4rem;
  color: #0C5345;
  margin-bottom: 10px;
}
.info-block p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
    padding: 60px 20px;
  }
  .divider {
    display: none;
  }
  .left, .right {
    width: 100%;
  }
}
/* ---- Werk & Inkomen pagina ---- */
.wi-hero {
  background: #0C5345;
  color: white;
  padding: 100px 60px;
}

.wi-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.wi-hero p {
  font-size: 1.2rem;
  color: #FFD65A;
}

.wi-intro {
  padding: 60px 60px;
  background: white;
  color: #0C5345;
}

.wi-content {
  background: #f8f8f8;
  padding: 80px 60px;
}

.wi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
}

.wi-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  color: #0C5345;
}

.wi-list li {
  margin-bottom: 12px;
  font-weight: 600;
}
/* --- Wonen & Huur pagina --- */
.huur-hero {
  background: #0C5345;
  color: white;
  padding: 100px 60px;
  text-align: left;
}
.huur-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.huur-hero p {
  font-size: 1.2rem;
  color: #FFD65A;
}

.huur-intro {
  padding: 60px 60px;
  background: white;
}
.huur-intro p {
  font-size: 1.1rem;
  color: #0C5345;
  margin-bottom: 20px;
}

.huur-hulp {
  padding: 60px 60px;
  background: #f8f8f8;
}
.huur-hulp h2 {
  font-size: 1.8rem;
  color: #0C5345;
  margin-bottom: 20px;
}
.huur-hulp ul {
  list-style: disc;
  padding-left: 20px;
  color: #003b2a;
  font-size: 1.1rem;
}
.huur-hulp ul li {
  margin-bottom: 12px;
}

.huur-formulier {
  background: white;
  padding: 60px 60px;
}
.huur-formulier h2 {
  font-size: 1.8rem;
  color: #0C5345;
  margin-bottom: 10px;
}
.huur-formulier p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 25px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.form-grid input,
.form-grid textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.full-width {
  grid-column: 1 / -1;
}
.huur-formulier button.btn {
  background: #0C5345;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}
.huur-formulier button.btn:hover {
  background: #094439;
}

.huur-tarieven {
  background: #f8f8f8;
  padding: 60px 60px;
}
.huur-tarieven h2 {
  font-size: 1.8rem;
  color: #0C5345;
  margin-bottom: 15px;
}
.huur-tarieven p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.huur-tarieven table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.huur-tarieven table th,
.huur-tarieven table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
}
.huur-tarieven table th {
  background-color: #0C5345;
  color: white;
}
/* ---------------------------------------- */
/* Consument & Ondernemer pagina            */
/* ---------------------------------------- */

.diensten-hero {
  background-color: #0C5345;
  color: white;
  padding: 100px 60px 80px;
  text-align: left;
}

.diensten-hero .page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.diensten-hero .subtitle {
  font-size: 1.3rem;
  color: #f4f4f4;
  max-width: 800px;
  line-height: 1.6;
}

/* Split layout */
.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
  padding: 80px 60px;
  gap: 60px;
}

.left,
.right {
  flex: 1;
}

.right.grey-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.right.grey-box h2 {
  margin-top: 0;
  color: #0C5345;
  font-size: 1.4rem;
}

.right.grey-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Formulier */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

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

.contact-form button {
  background-color: #0C5345;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #094439;
}

/* Bullet list styling */
.qualities-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.qualities-list li {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0C5345;
  margin-bottom: 10px;
}

.qualities-list li::before {
  content: "✔";
  margin-right: 10px;
  color: #0C5345;
}

/* Responsive */
@media (max-width: 900px) {
  .split {
    flex-direction: column;
    padding: 60px 20px;
  }

  .right.grey-box {
    margin-top: 40px;
  }

  .diensten-hero {
    padding: 80px 30px 60px;
  }

  .diensten-hero .page-title {
    font-size: 2.4rem;
  }

  .diensten-hero .subtitle {
    font-size: 1.1rem;
  }
}
/* ------------------- OVERHEID PAGINA ------------------- */

.diensten-hero {
  background-color: #0C5345;
  color: white;
  padding: 100px 60px 80px;
  text-align: left;
}

.diensten-hero .page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.diensten-hero .subtitle {
  font-size: 1.3rem;
  color: #f4f4f4;
  max-width: 800px;
  line-height: 1.6;
}

/* Tarieven tabel */
.diensten-blocks {
  background: white;
  padding: 80px 60px;
}

.diensten-blocks h2 {
  color: #0C5345;
  margin-bottom: 20px;
}

.diensten-blocks p {
  max-width: 800px;
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

th, td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid #ddd;
}

th {
  background-color: #0C5345;
  color: white;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive */
@media (max-width: 900px) {
  .diensten-hero {
    padding: 80px 30px 60px;
  }

  .diensten-hero .page-title {
    font-size: 2.4rem;
  }

  .diensten-hero .subtitle {
    font-size: 1.1rem;
  }

  .diensten-blocks {
    padding: 60px 20px;
  }
}
/* --- Split divider (lichtgrijze streep) --- */
.split .divider {
  width: 1px;
  background: #e6e6e6;
  align-self: stretch;
}

/* --- Qualities list: 1 vinkje per woord --- */
.qualities-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.qualities-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}

.qualities-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor; /* neemt dezelfde kleur als de tekst */
}

/* --- Foto onder de punten --- */
.intro-photo {
  margin-top: 28px;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* Responsive: divider wordt horizontaal op smalle schermen */
@media (max-width: 900px) {
  .split .divider {
    width: 100%;
    height: 1px;
  }

  .intro-photo {
    max-width: 100%;
  }
}
/* =========================
   Over ons - layout & hero
   ========================= */

.about-hero {
  background: #0b5a4b; /* zelfde familie als je groene theme */
  color: #fff;
  padding: 88px 0 72px;
}

.about-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.about-hero-text h1 {
  margin: 0 0 14px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-hero-text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  max-width: 42ch;
  opacity: 0.95;
}

.about-hero-media {
  flex: 0 0 auto;
}

.about-hero-image {
  width: 520px;
  max-width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

/* =========================
   Secties: betere typografie
   ========================= */

.about-section {
  padding: 72px 0;
}

.about-section-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.about-title h2 {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about-kicker {
  margin: 0;
  opacity: 0.85;
  line-height: 1.6;
}

.about-body p {
  margin: 0 0 18px;
  line-height: 1.9;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* “kaart” effect in light-bg secties */
.about-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 26px;
}

/* Commitment: netter en luchtiger */
.commitment-list {
  margin: 0;
  padding-left: 18px;
}

.commitment-list li {
  margin: 10px 0;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 980px) {
  .about-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero-image {
    width: 100%;
    height: 280px;
  }

  .about-section-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-title h2 {
    font-size: 34px;
  }

  .about-hero-text h1 {
    font-size: 50px;
  }
}
/* =========================
   OVER ONS (scoped)
   ========================= */

.about-page .about-hero {
  /* Foto als achtergrond met stijlvolle overlay */
  background:
    linear-gradient(90deg, rgba(7, 74, 61, 0.92) 0%, rgba(7, 74, 61, 0.78) 55%, rgba(7, 74, 61, 0.55) 100%),
    url("assets/pexels-canvastudio-3153208.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 96px 0 88px;
}

.about-page .about-hero-content {
  max-width: 920px;
}

.about-page .about-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 14px;
}

.about-page .about-hero h1 {
  margin: 0 0 14px;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.about-page .about-hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  max-width: 52ch;
  opacity: 0.95;
}

/* Sections */
.about-page .about-section {
  padding: 84px 0;
  background: #ffffff;
}

.about-page .about-alt {
  background: #f6faf9;
}

.about-page .about-section-head {
  margin-bottom: 28px;
}

.about-page .about-section-head h2 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0b5a4b;
}

.about-page .about-kicker {
  margin: 0;
  color: #0b5a4b;
  opacity: 0.85;
  line-height: 1.6;
}

/* Two-column layout (ziet er strak uit op desktop, stacked op mobiel) */
.about-page .about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-page .about-prose p {
  margin: 0 0 18px;
  line-height: 1.95;
  color: #0b5a4b;
}

.about-page .about-prose p:last-child {
  margin-bottom: 0;
}

/* Highlight box */
.about-page .about-highlight {
  margin-top: 26px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid #e9efee;
  background: #ffffff;
}

.about-page .about-highlight-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b5a4b;
}

.about-page .about-highlight-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-page .about-highlight-items span {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #e9efee;
  background: #f6faf9;
  color: #0b5a4b;
  font-size: 14px;
}

/* Card wrapper in light sections */
.about-page .about-card {
  background: #ffffff;
  border: 1px solid #e9efee;
  border-radius: 18px;
  padding: 28px;
}

/* Mini cards (team) */
.about-page .about-mini-cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-page .about-mini-card {
  border: 1px solid #e9efee;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.about-page .about-mini-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #0b5a4b;
}

.about-page .about-mini-text {
  margin: 0;
  line-height: 1.7;
  color: #0b5a4b;
  opacity: 0.9;
}

/* Commitment grid */
.about-page .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-page .about-pill {
  border: 1px solid #e9efee;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.about-page .about-pill-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #0b5a4b;
}

.about-page .about-pill-text {
  margin: 0;
  line-height: 1.8;
  color: #0b5a4b;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 980px) {
  .about-page .about-hero {
    padding: 78px 0 72px;
    background:
      linear-gradient(180deg, rgba(7, 74, 61, 0.92) 0%, rgba(7, 74, 61, 0.78) 60%, rgba(7, 74, 61, 0.65) 100%),
      url("assets/pexels-canvastudio-3153208.jpg");
    background-position: center;
  }

  .about-page .about-hero h1 {
    font-size: 52px;
  }

  .about-page .about-two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-page .about-mini-cards {
    grid-template-columns: 1fr;
  }

  .about-page .about-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-section {
    padding: 64px 0;
  }

  .about-page .about-section-head h2 {
    font-size: 34px;
  }
}
/* Diensten: intake/upload sectie */
.intake-section {
  padding: 70px 0;
  background: #f6faf9;
}

.intake-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.intake-text h2 {
  margin: 0 0 12px;
}

.intake-note {
  opacity: 0.9;
  line-height: 1.8;
}

.intake-form-card {
  background: #fff;
  border: 1px solid #e9efee;
  border-radius: 16px;
  padding: 22px;
}

.intake-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.intake-form label {
  font-weight: 600;
}

.intake-form input,
.intake-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #e9efee;
  outline: none;
}

.intake-form input:focus,
.intake-form textarea:focus {
  border-color: #0b5a4b;
}

.form-hint {
  opacity: 0.8;
}

.btn-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  margin-top: 12px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .intake-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   WERKWIJZE (scoped)
   ========================= */

.werkwijze-page .werkwijze-hero {
  background: #0b5a4b;
  color: #fff;
  padding: 78px 0;
}

.werkwijze-page .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.werkwijze-page .werkwijze-hero h1 {
  margin: 0 0 14px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.werkwijze-page .werkwijze-hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 60ch;
}

.werkwijze-page .hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Section headings */
.werkwijze-page .section-head {
  margin-bottom: 22px;
}

.werkwijze-page .section-head h2 {
  margin: 0 0 8px;
  font-size: 40px;
  color: #0b5a4b;
  letter-spacing: -0.02em;
}

.werkwijze-page .section-head p {
  margin: 0;
  color: #0b5a4b;
  opacity: 0.85;
}

/* Stappen */
.werkwijze-page .stappen {
  padding: 70px 0;
  background: #ffffff;
}

.werkwijze-page .steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.werkwijze-page .step-card {
  border: 1px solid #e9efee;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
}

.werkwijze-page .step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #0b5a4b;
  background: #f6faf9;
  border: 1px solid #e9efee;
  margin-bottom: 12px;
}

.werkwijze-page .step-card h3 {
  margin: 0 0 8px;
  color: #0b5a4b;
  letter-spacing: -0.01em;
}

.werkwijze-page .step-card p {
  margin: 0;
  line-height: 1.85;
  color: #0b5a4b;
  opacity: 0.92;
}

/* Wie doet het werk */
.werkwijze-page .who-section {
  padding: 70px 0;
  background: #f6faf9;
}

.werkwijze-page .who-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.werkwijze-page .who-copy h2 {
  margin: 0 0 12px;
  font-size: 40px;
  color: #0b5a4b;
  letter-spacing: -0.02em;
}

.werkwijze-page .who-copy p {
  margin: 0 0 14px;
  line-height: 1.95;
  color: #0b5a4b;
}

.werkwijze-page .who-copy p:last-child {
  margin-bottom: 0;
}

.werkwijze-page .who-card {
  border: 1px solid #e9efee;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.werkwijze-page .who-card-title {
  font-weight: 600;
  color: #0b5a4b;
  margin-bottom: 10px;
}

.werkwijze-page .who-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
  color: #0b5a4b;
}

/* Content sections */
.werkwijze-page .content-section {
  padding: 70px 0;
  background: #ffffff;
}

.werkwijze-page .content-section.alt {
  background: #f6faf9;
}

.werkwijze-page .content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.werkwijze-page .content-head h2 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.15;
  color: #0b5a4b;
  letter-spacing: -0.02em;
}

.werkwijze-page .kicker {
  margin: 0;
  color: #0b5a4b;
  opacity: 0.85;
  line-height: 1.7;
}

.werkwijze-page .content-body p {
  margin: 0 0 14px;
  line-height: 1.95;
  color: #0b5a4b;
  opacity: 0.95;
}

.werkwijze-page .content-body p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .werkwijze-page .hero-grid,
  .werkwijze-page .who-grid,
  .werkwijze-page .content-grid {
    grid-template-columns: 1fr;
  }

  .werkwijze-page .werkwijze-hero h1 {
    font-size: 48px;
  }

  .werkwijze-page .steps-grid {
    grid-template-columns: 1fr;
  }

  .werkwijze-page .hero-image img {
    height: 240px;
  }
}
/* =========================
   WERKWIJZE (alleen deze pagina)
   ========================= */

.wk-page {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.wk-container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* Hero */
.wk-hero {
  background: #065a4f; /* match met jouw groene thema */
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.wk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 15% 20%, rgba(255,255,255,0.08), transparent 55%),
              radial-gradient(700px 400px at 80% 30%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}

.wk-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.wk-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.wk-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.wk-lead {
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
}

.wk-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 22px;
}

.wk-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.wk-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #00a878;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 160ms ease, filter 160ms ease;
}

.wk-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.wk-cta.wk-cta-secondary {
  background: #0b6b5f;
  border: 1px solid rgba(6,90,79,0.18);
  box-shadow: none;
}

.wk-hero-media {
  position: relative;
}

.wk-hero-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.14);
  transform: rotate(1deg);
}

.wk-hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.wk-hero-card {
  position: absolute;
  left: -14px;
  bottom: -18px;
  width: min(320px, 92%);
  background: rgba(255,255,255,0.95);
  color: #0b3d36;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  border: 1px solid rgba(6,90,79,0.12);
}

.wk-hero-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.wk-hero-card p {
  margin: 0;
  color: rgba(11,61,54,0.85);
  line-height: 1.55;
}

/* Sections */
.wk-section {
  padding: 70px 0;
}

.wk-section.wk-soft {
  background: #f3faf8;
}

.wk-section-head h2 {
  margin: 0 0 10px;
  font-size: 36px;
  color: #0b3d36;
}

.wk-section-head p {
  margin: 0;
  color: rgba(11,61,54,0.78);
  line-height: 1.7;
}

/* Steps grid */
.wk-steps-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wk-step-card {
  background: #fff;
  border: 1px solid rgba(6,90,79,0.12);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
  position: relative;
  overflow: hidden;
}

.wk-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 240px at 20% 0%, rgba(0,168,120,0.08), transparent 52%);
  pointer-events: none;
}

.wk-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.wk-step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.wk-step-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(0,168,120,0.10);
  border: 1px solid rgba(0,168,120,0.22);
  color: #0b3d36;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.wk-step-card h3 {
  margin: 0;
  color: #0b3d36;
  font-size: 18px;
}

.wk-step-card p {
  margin: 10px 0 0;
  color: rgba(11,61,54,0.80);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Split section */
.wk-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.wk-split-copy h2 {
  margin: 0 0 14px;
  font-size: 42px;
  color: #0b3d36;
}

.wk-split-copy p {
  margin: 0 0 14px;
  color: rgba(11,61,54,0.80);
  line-height: 1.85;
}

.wk-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  border: 1px solid rgba(6,90,79,0.12);
}

.wk-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.wk-mini-list {
  margin-top: 18px;
  background: #fff;
  border: 1px solid rgba(6,90,79,0.12);
  border-radius: 18px;
  padding: 14px;
}

.wk-mini-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 8px;
  color: rgba(11,61,54,0.82);
}

.wk-mini-item + .wk-mini-item {
  border-top: 1px solid rgba(6,90,79,0.10);
}

.wk-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: #00a878;
  box-shadow: 0 0 0 6px rgba(0,168,120,0.10);
}

/* Info grid */
.wk-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wk-info-card {
  background: #fff;
  border: 1px solid rgba(6,90,79,0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.wk-info-card h3 {
  margin: 0 0 10px;
  color: #0b3d36;
  font-size: 20px;
}

.wk-info-card p {
  margin: 0 0 12px;
  color: rgba(11,61,54,0.80);
  line-height: 1.85;
}

.wk-info-card p:last-child {
  margin-bottom: 0;
}

.wk-info-accent {
  background: #f3faf8;
  border-color: rgba(0,168,120,0.18);
}

.wk-info-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.wk-info-wide p {
  margin: 0;
  max-width: 75ch;
}

@media (max-width: 900px) {
  .wk-hero-grid,
  .wk-split {
    grid-template-columns: 1fr;
  }

  .wk-hero-image img {
    height: 280px;
  }

  .wk-photo img {
    height: 320px;
  }

  .wk-steps-grid,
  .wk-info-grid {
    grid-template-columns: 1fr;
  }

  .wk-info-wide {
    flex-direction: column;
    align-items: flex-start;
  }
}