/*
Theme Name: Healthcare - Zschot Media
Author: Jeffrey
Description: Een thema voor een zorg zzper.
Version: 1.0
*/
:root {
  /* --dark-gray: #585a5b;
  --light-blue-gray: #6d7c8a;
  --c2a-orange: #e65c00;
  --background-gray: #f7f7f7; */
  --dark-gray: #2a2a2a; /* Bijna zwart, voor een modern header- en footer-effect */
  --light-blue-gray: #60b7ff; /* Een heldere, Material Design geïnspireerde blauwgrijze tint voor content en hover */
  --c2a-orange: #33a2ff;
  --background-gray: #f7f7f7;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  background: var(--background-gray);
}
body {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
}
.w-100 {
  width: 100%;
}
.title {
  text-align: center;
  font-size: 1.85em;
}
.subtitle {
  text-align: center;
  color: var(--light-blue-gray);
  font-size: 1.45em;
  margin-bottom: -0.5em !important;
}
.paragraph-home {
  color: var(--dark-gray);
}
.site-logo img {
  width: 65px;
  height: 55px;
  padding: 1em;
}
.c2a-phone {
  background: var(--dark-gray);
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c2a-phone a {
  color: var(--c2a-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}
header {
  display: flex;
  align-items: center;
  margin-left: 2em;
  margin-right: 2em;
  max-height: 100px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Zorgt ervoor dat de navigatie boven andere elementen blijft */
  background: #fff; /* Voeg een achtergrondkleur toe zodat inhoud er niet doorheen zichtbaar is */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optioneel: een schaduw om de navigatie meer gelaagdheid te geven */
  padding: 0em;
}
.site-main {
  margin-top: 7.5em !important;
}
.site-main h2 {
  text-align: center;
}

.footer-logo {
  width: 250px;
  height: 100px;
  margin-top: 1em;
}
.divider {
  margin-bottom: 5em;
}
.nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
.main-menu {
  display: flex;
  gap: 2em;
  list-style-type: none;
  text-decoration: none;
  justify-content: flex-end;
}
.main-menu li {
  text-decoration: none;
}
.main-menu li a {
  text-decoration: none;
  color: var(--dark-gray);
  transition: 200ms ease-in-out;
  font-weight: 600;
}
.main-menu li a:hover {
  text-decoration: none;
  color: var(--light-blue-gray);
  transition: 200ms ease-in-out;
}

.container {
  margin-left: 2em;
  margin-right: 2em;
}

footer {
  margin-top: 3.5em;
  background: var(--dark-gray);
}
/* Algemene styling voor mobiele navigatie */
.mobile-nav {
  display: none;
}

.menu-toggle {
  display: none;
}

.main-menu {
  display: flex;
  justify-content: space-between; /* Zorgt voor juiste uitlijning */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu .menu-item {
  margin: 0; /* Zorgt dat marges consistent blijven */
}

.main-menu .menu-item:last-child {
  background: var(--c2a-orange);
  border-radius: 25px;
  padding: 10px 15px; /* Padding binnen de knop */
  display: inline-block; /* Voorkomt dat flexgedrag breekt */
  text-align: center; /* Zorgt dat tekst gecentreerd blijft binnen het item */
  transition: 200ms ease-in-out;
  color: var(--dark-gray);
}
.main-menu .menu-item:last-child:hover {
  transition: 200ms ease-in-out;
  background: var(--light-blue-gray) !important;
}
.main-menu .menu-item:last-child a {
  display: block; /* Zorgt ervoor dat de link de volledige ruimte binnen het menu-item inneemt */
  color: white; /* Aanpassen naar gewenste kleur */
  text-decoration: none; /* Verwijdert onderstreping */
  font-weight: bold; /* Optioneel: maakt het menu-item vetgedrukt */
  transition: 200ms ease-in-out;
}

.main-menu .menu-item:last-child a:hover {
  display: block; /* Zorgt ervoor dat de link de volledige ruimte binnen het menu-item inneemt */
  text-decoration: none; /* Verwijdert onderstreping */
  font-weight: bold; /* Optioneel: maakt het menu-item vetgedrukt */
  transition: 200ms ease-in-out;
}

.main-menu .menu-item a {
  padding: 0; /* Verwijder eventuele padding van andere menu-items */
  display: inline-block;
}

.menu-icon {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
}

.menu-icon span {
  background: var(--dark-gray);
  height: 3px;
  width: 100%;
  transition: 200ms ease-in-out;
}

.desktop-nav {
  display: flex;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 20px;
    width: 100%;
  }
  .footer-social-contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    width: 250px;
    height: 100px;
    margin-top: 1em;
  }
  .c2a-phone {
    background: var(--dark-gray);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  .menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--dark-gray);
    position: absolute;
    top: 40px;
    right: 0;
    width: 100%;
    z-index: 1000;
  }

  .mobile-menu .menu-item:last-child {
    background: var(--c2a-orange);
    border-radius: 25px;
    padding: 10px 20px; /* Padding binnen de knop */
    display: inline-block; /* Voorkomt dat flexgedrag breekt */
    text-align: center; /* Zorgt dat tekst gecentreerd blijft binnen het item */
  }
  .mobile-menu .menu-item:last-child:hover {
    opacity: 0.8;
  }
  .mobile-menu .menu-item:last-child a:hover {
    color: white;
  }

  .menu-toggle:checked ~ .mobile-menu {
    display: flex;
  }

  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .mobile-menu-list li {
    padding: 10px;
    /* border-bottom: 1px solid var(--light-blue-gray); */
    margin-bottom: 0.5em;
  }

  .mobile-menu-list li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  .mobile-menu-list li a:hover {
    color: var(--light-blue-gray);
  }

  .mobile-logo-wrapper {
    display: flex;
    justify-content: space-between; /* Verdeel ruimte tussen de items */
    align-items: center; /* Zorgt voor verticale uitlijning */
    width: 100%;
    position: relative; /* Voor nauwkeurige plaatsing indien nodig */
  }

  .mobile-logo {
    flex: 1; /* Laat het logo de beschikbare ruimte gebruiken */
    text-align: center; /* Centreer het logo in zijn eigen flex-item */
  }

  .mobile-logo img {
    width: 300px;
    height: 100px;
  }

  .close-menu {
    background: var(--c2a-orange);
    color: var(--dark-gray);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px;
    border-radius: 5px;
    transition: 250ms ease-in-out;
    align-self: center; /* Zorgt dat de knop verticaal gecentreerd blijft */
    margin-right: 2em;
  }
  .close-menu:hover {
    background: var(--dark-gray);
    color: var(--c2a-orange);
    transition: 250ms ease-in-out;
  }
  .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .testimonial-content {
    padding-left: 0em;
    padding-right: 0em;
  }
  .testiominial-owner {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-wrapper {
    flex-direction: row;
    text-align: center;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .banner-info {
    width: 90% !important;
  }
  .banner-info .banner-logo {
    margin-bottom: 0em !important;
  }
  .banner-logo {
    max-width: 60% !important;
  }
  .banner-img {
    display: none !important;
  }

  .banner {
    padding-top: 1.75em;
    padding-bottom: 1.75em;
    width: 100%;
    height: 325px !important;
    background: none;
    padding-left: 2.5em;
    padding-right: 2.5em;
    margin-bottom: 0.5em !important;
  }
  .intro-wrapper-text h3 {
    margin-bottom: -1em !important;
  }
  .intro-wrapper-text * {
    margin-bottom: 0.25em !important;
  }
  .intro-wrapper-text a.banner-button {
    margin-top: 1em !important;
  }
  .intro-wrapper {
    flex-direction: column; /* Stapel de tekst en afbeelding */
    padding: 1em !important; /* Verklein de padding op kleinere schermen */
    gap: 2em;
  }

  .intro-wrapper-text {
    text-align: center; /* Centreer tekst op mobiele apparaten */
  }

  .intro-wrapper-text h2.title {
    font-size: 2em; /* Verklein de titel op mobiele apparaten */
  }

  .intro-wrapper-text p {
    width: 100% !important; /* Laat de paragraaf volledige breedte nemen */
    margin: 0;
  }

  .intro-wrapper-img {
    width: 100%; /* Laat afbeelding volledige breedte nemen */
  }

  .service {
    width: 100% !important; /* Elke box neemt 50% van de breedte */
  }
  .faq-question {
    font-size: 14px;
    padding: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }
}

footer {
  background: var(--dark-gray);
  color: white;
  padding: 20px 0;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-content > div {
  flex: 1;
  margin: 10px;
}

.footer-content h4 {
  margin-bottom: 10px;
}

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

.footer-content li {
  margin-bottom: 5px;
}

.footer-content a {
  color: white;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.footer-social-contact {
  text-align: center;
  flex: 0.65 !important; /* Deze sectie neemt minder ruimte */
}

.footer-social-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
}

.footer-social-contact .contact-button {
  display: inline-block;
  margin-top: 0px;
  padding: 10px 20px;
  background: var(--c2a-orange);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border-radius: 25px;
  padding: 10px 20px; /* Padding binnen de knop */
  font-weight: 600;
}

.footer-copyright p {
  color: white;
}

.footer-social-contact .contact-button:hover {
  background: var(--light-blue-gray);
  opacity: 1;
  text-decoration: none;
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  width: 100%;
  font-weight: bold;
}
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
  border-radius: 5px;
}
.testiominial-owner {
  display: flex;
  justify-content: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.testiominial-owner img {
  width: 50px;
  height: 50px;
}
.testimonial-quotes span {
  font-size: 40px;
  color: var(--c2a-orange);
}

.carousel-items {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  background: white;
}

.carousel-item {
  flex: 0 0 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 1.5em;
  background: white;
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

.carousel-prev,
.carousel-next {
  background: var(--c2a-orange); /* Vervang met jouw gewenste kleur */
  border-radius: 5px;
  color: #fff;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 0; /* Verbergt eventuele tekstinhoud */
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-button span {
  margin-top: 0.15em;
}

.carousel-prev:hover,
.carousel-next:hover {
  opacity: 0.8;
}

.carousel-prev .dashicons,
.carousel-next .dashicons {
  font-size: 18px; /* Pas de grootte van de Dashicons aan */
  color: #fff; /* Zorg ervoor dat het pictogram wit is */
}

.testimonial-content {
  padding-left: 2em;
  padding-right: 2em;
}

.testimonial-rating span {
  color: var(--c2a-orange);
}
.testimonial-divider {
  width: 50%;
  border: 1px solid var(--dark-gray);
}

.contact-section {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: white;
}

.contact-image img {
  width: 100%;
  height: auto;
  object-fit: fill;
  height: 150px;
}

.contact-content {
  padding: 1em;
}

.contact-content h2 {
  color: #000;
  margin-bottom: 1em;
}

.contact-content p {
  font-size: 1em;
  color: #666;
  line-height: 1.5;
  margin-bottom: 2em;
}

.contact-button {
  display: inline-block;
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  background: var(--c2a-orange);
  border-radius: 25px;
}

.contact-button:hover {
  opacity: 0.8;
}
.banner {
  position: relative;
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 3.5em;
  overflow: visible; /* Laat de afbeelding toe om buiten de container te zweven */
  padding-right: 2.5em;
}

.banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-img {
  position: relative;
  width: 40%;
  z-index: 2;
  display: flex;
  background: blue;
}

.banner-img img {
  position: absolute;
  bottom: -275px;
  left: 0;
  height: 500px;
  width: 550px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.banner-info {
  width: 50%;
  text-align: left;
  z-index: 1;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-info .banner-logo {
  max-width: 50%;
  margin-bottom: 1em;
}

.banner-info h2 {
  font-size: 2.5em;
  margin-bottom: 1em;
  font-weight: bold;
}

.banner-button {
  display: inline-block;
  background-color: var(--dark-gray);
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 125px;
  text-align: center;
}

.banner-button:hover {
  background-color: var(--light-blue-gray);
}
.intro-wrapper {
  display: flex;
  flex-wrap: wrap; /* Zorgt ervoor dat items automatisch onder elkaar gaan op kleinere schermen */
  justify-content: space-between;
  padding: 2em 5em;
  align-items: center;
  gap: 2em; /* Ruimte tussen de kolommen */
}

.intro-wrapper-text {
  flex: 1 1 40%; /* Laat tekst 40% breedte nemen op grote schermen, flexibel op kleine schermen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.intro-wrapper-text p {
  line-height: 1.8;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro-wrapper-text a.banner-button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em !important;
}

.intro-wrapper-img {
  flex: 1 1 50%; /* Laat afbeelding 50% breedte nemen op grote schermen */
  display: flex;
  justify-content: center;
}

.intro-wrapper-img img {
  max-width: 100%; /* Houd afbeelding responsief */
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Voeg een subtiele schaduw toe */
}

.services-widget {
  position: relative; /* z-index kan nodig zijn om boven de achtergrond te komen */
  z-index: 2;
  background: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 3em;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
  display: flex;
  flex-wrap: wrap;
}
.mt-4 {
  margin-top: 6em;
}

/* Stel dat de widget zelf rond de 700px hoog is, 
   en we willen dat de achtergrond rond de helft begint */
.service-background {
  margin-top: -900px; /* schuif 'm 350px omhoog (helft van 700px) */
  z-index: 1;
  margin-left: -2em;
  /* Afbeelding */
  width: 120%;
  height: 1000px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.services-widget .banner-button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5em;
}
.service {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative; /* Zorg dat de overlay correct gepositioneerd is */
  overflow: hidden; /* Verberg elementen buiten de bounds */
  padding: 1em;
}

.services-thumbnail {
  position: relative; /* Zorg dat de overlay en tekst correct gepositioneerd zijn */
  width: 100%;
  aspect-ratio: 1 / 1; /* Zorg voor een vierkante afbeelding (pas aan indien nodig) */
}

.services-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.services-thumbnail:hover img {
  transform: scale(1.1); /* Zoom de afbeelding iets in bij hover */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-gray);
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}

.services-thumbnail:hover .overlay {
  opacity: 0; /* Laat de overlay verdwijnen bij hover */
}

.service h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: white;
  font-size: 1.5em;
  text-align: center;
  z-index: 2;
}

h3 {
  font-size: 1.5em;
  margin: 10px 0;
}

.projects-wrapper {
  display: flex; /* Zorgt ervoor dat linkerkolom en rechterkolom naast elkaar staan */
  gap: 20px; /* Ruimte tussen de kolommen */
  margin: 20px 0;
}

.projects-left {
  width: 30%; /* Breedte linkerkolom */
}

.projects-right {
  width: 70%; /* Breedte rechterkolom */
}

.project-titles {
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-title-item {
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer; /* Wijst aan dat het klikbaar is */
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

.project-title-item:hover {
  background-color: var(--c2a-orange);
  color: white;
}

.project-detail {
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.project-thumbnail img {
  width: 60%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.project-detail-title {
  margin: 0 0 10px;
}

.project-excerpt {
  margin-bottom: 15px;
}

.project-button {
  background-color: var(--dark-gray);
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 125px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.project-button:hover {
  background-color: var(--light-blue-gray);
}

.active {
  /* background: var(--dark-gray); */
  /* color: white; */
  border: 2.5px solid var(--c2a-orange);
}

/* Container waarin beide kolommen zitten */
.content {
  display: flex;
  flex-wrap: wrap; /* Zorgt ervoor dat kolommen naar de volgende regel springen bij te weinig ruimte */
  margin: 0 -15px; /* Eventueel om kolommen mooi te laten aansluiten */
  align-items: center;
}

/* Linkerkolom: Contactformulier */
.contact-form-wrapper {
  flex: 0 0 65%; /* 65% breedte */
  max-width: 65%;
  background-color: #ffffff;
  padding: 20px;
  box-sizing: border-box;
}

/* Rechterkolom: FAQ */
.contact-faq {
  flex: 0 0 35%; /* 35% breedte */
  max-width: 35%;
  padding: 20px;
  box-sizing: border-box;
}

/* Responsive (op mobiel 100% breed) */
@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-faq {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px; /* Ruimte tussen beide blokken op mobiel */
  }
}

.faq-container {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--light-blue-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #f1f3f5;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e9ecef;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #ffffff;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px; /* Adjust for longer answers */
  padding: 15px 20px;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.arrow.open {
  transform: rotate(90deg);
}

@media (max-width: 480px) {
  .faq-container {
    max-width: 90%;
  }
}

/* Algemene wrapper rond je formulier */
.contact-form-wrapper {
  margin: 0 auto; /* Centreer het formulier binnen de container */
  background-color: #fff; /* Achtergrondkleur */
  border-radius: 8px; /* Ronde hoeken */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  margin-top: 2em;
}

/* Stijl de standaard paragraaf-tags (CF7 plaatst elk veld in een <p> tag) */
.contact-form-wrapper p {
  margin-bottom: 15px; /* Ruimte onder elk veld */
}

/* Labels iets duidelijker maken */
.contact-form-wrapper label {
  display: block; /* Zet het label op een eigen regel */
  font-weight: 600; /* Iets dikker */
  margin-bottom: 4px; /* Ruimte tussen label en het veld */
}

/* Tekstvelden: naam, e-mail, telefoon, etc. */
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
  width: 100%;
  border: 1px solid var(--light-blue-gray);
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Tekstveld voor het bericht */
.contact-form-wrapper textarea {
  min-height: 120px; /* Maak het tekstvak iets groter van start */
}

/* Placeholder-styling voor browsers die het ondersteunen */
.contact-form-wrapper ::placeholder {
  color: #aaa;
}

/* De verzendknop */
.contact-form-wrapper input[type="submit"] {
  background-color: var(--c2a-orange);
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 125px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border: none;
  cursor: pointer;
}

/* Hover/focus state voor de button */
.contact-form-wrapper input[type="submit"]:hover {
  background-color: var(--light-blue-gray);
  transition: background-color 0.3s ease;
}

/* Eventueel focus states voor toegankelijkheid */
.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus {
  outline: 2px solid var(--c2a-orange); /* Accent bij focus, of eigen kleur */
  border-color: var(--c2a-orange);
}
.wpcf7-not-valid-tip {
  color: var(--c2a-orange);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--dark-gray);
}

/***** 1. HERO-SECTIE *****/
.hero-section {
  display: flex;
  flex-wrap: wrap; /* Op kleinere schermen komt alles onder elkaar */
  align-items: center;
  margin-bottom: 60px;
}
.hero-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.5;
}
.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 20px;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/***** 2. MISSIE-SECTIE *****/
.mission-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}
.mission-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 20px;
}
.mission-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.mission-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mission-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.mission-content {
  font-size: 1rem;
  line-height: 1.6;
}

/***** 3. HIGHLIGHT-SECTIE *****/
.highlight-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}
.highlight-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.highlight-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.highlight-content {
  font-size: 1rem;
  line-height: 1.6;
}
.highlight-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 20px;
}
.highlight-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/***** 4. LOCATIES-SECTIE *****/
.locaties-section {
  text-align: center; /* Center de titel */
  margin-bottom: 60px;
}
.locaties-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.locaties-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/***** RESPONSIVE (mobiel) *****/
@media (max-width: 768px) {
  .hero-text h2,
  .mission-text h2,
  .highlight-text h2,
  .locaties-section h2 {
    font-size: 1.5rem;
  }
  .hero-text p,
  .mission-content,
  .highlight-content,
  .locaties-content {
    font-size: 1rem;
  }
}

.contact-page {
  padding-left: 2em;
  padding-right: 2em;
}

/* Container styling (optioneel) */
.diensten-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Paginatitel */
.diensten-archive .page-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

/* Inleidende tekst */
.diensten-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* De grid met diensten */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Elk dienst-item krijgt een card-achtige stijl */
.service-item {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Zodat ronde hoeken ook op de afbeelding werken */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Links en afbeeldingen binnen elk item */
.service-link {
  display: block;
  text-decoration: none; /* Verwijdert onderstreping */
  color: inherit; /* Tekstkleur overnemen */
  padding: 10px;
}
.service-image {
  width: 100%;
  text-align: center;
}
.service-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}
.service-title {
  margin: 15px 0 0;
  font-size: 1.4rem;
  text-align: center;
}

/* Placeholder-afbeelding (optioneel) */
.service-image.placeholder {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}
.service-image.placeholder img {
  height: auto;
  max-height: 100%;
  width: auto;
}

/* Paginatie-styling (optioneel, pas naar wens aan) */
.pagination {
  text-align: center;
  margin-bottom: 40px;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  background: #f8f8f8;
  color: #333;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.pagination .page-numbers:hover {
  background: #ddd;
}
.pagination .current {
  background: #333;
  color: #fff;
}

/* Container / Archive pagina */
.projecten-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Titel bovenaan (h1) */
.projecten-archive .page-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

/* De project-lijst (grid) */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Project item (card) */
.project-item {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Link binnen elk item */
.project-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px;
}

/* Afbeeldingen */
.project-image {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.project-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee; /* Visuele scheiding, optioneel */
}

/* Placeholder styling (indien geen thumbnail) */
.project-image.placeholder {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}
.project-image.placeholder img {
  height: auto;
  max-height: 100%;
  width: auto;
}

/* Titel en excerpt */
.project-title {
  font-size: 1.4rem;
  margin: 10px 0 8px;
}
.project-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Paginatie styling (optioneel) */
.pagination {
  text-align: center;
  margin: 40px 0;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  background: #f8f8f8;
  color: #333;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.pagination .page-numbers:hover {
  background: #ddd;
}
.pagination .current {
  background: #333;
  color: #fff;
}

/* Zorg dat de container nu in kolom-layout staat voor de drie lagen */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background: var(--dark-gray);
  color: white;
}
.footer-container a {
  color: white;
  text-decoration: none;
}
.footer-container a:hover {
  color: white;
  text-decoration: underline;
}

/* Algemene styling voor iedere rij */
.footer-row {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

/* Laag 1: Pagina's */
.pages-row ul.footer-pages-list {
  display: flex;
  flex-wrap: wrap; /* Op desktop naast elkaar, op mobiel gaat hij over naar de volgende regel */
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pages-row ul.footer-pages-list li {
  margin: 0 10px;
}

/* Laag 2: Social en Contact in een horizontale rij op desktop */
.social-row .footer-social-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Zorg dat de social icons ook in één rij staan */
.social-row .social-icons {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}

/* Responsive: op schermen kleiner dan 768px stapelen */
@media (max-width: 768px) {
  .pages-row ul.footer-pages-list {
    flex-direction: column;
  }

  .social-row .footer-social-contact {
    flex-direction: column;
  }
  .banner-info {
    margin-top: 4em;
  }
}
