.elementor-438 .elementor-element.elementor-element-736188f{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );font-style:var( --e-global-typography-primary-font-style );color:var( --e-global-color-primary );}.elementor-438 .elementor-element.elementor-element-12c476f{text-align:center;}.elementor-438 .elementor-element.elementor-element-12c476f .elementor-heading-title{color:var( --e-global-color-accent );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-438 .elementor-element.elementor-element-a62af19 > .elementor-widget-container{padding:0px 33px 0px 32px;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}/* Start custom CSS for html, class: .elementor-element-23be2ae */.get-in-touch {
  background: #fff;
  padding: 6rem 1.5rem 8rem;
}
.get-in-touch .intro {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: left;
}
.get-in-touch h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
}
@media (min-width: 640px) {
  .get-in-touch h2 {
    font-size: 3rem;
  }
}
.get-in-touch p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #4B5563;
  margin-top: 1.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.contact-card {
  background: #F9FAFB;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: #EC4899;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}
.contact-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
}
.contact-content p {
  margin-top: 0.5rem;
  color: #4B5563;
  font-size: 1rem;
}
.contact-content a {
  margin-top: 1rem;
  display: inline-block;
  font-weight: 600;
  color: #EC4899;
  text-decoration: none;
}
/* --- Basis container --- */
main.diensten-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}
/* --- GRID --- */
main.diensten-container .diensten-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}
/* --- Link container --- */
main.diensten-container .diensten-link {
  text-decoration: none;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  display: flex;
}
/* --- Blokken zelf --- */
main.diensten-container .diensten-blok {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  transition: all 0.4s ease;
  box-sizing: border-box;
  animation: fadeIn 0.6s ease-out forwards;
  position: relative;
  z-index: 1;
}

/* --- Hover-effect: zacht vergroten en schaduw versterken --- */
main.diensten-container .diensten-blok:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(60, 60, 138, 0.25);
  z-index: 2;
}
/* --- Tekst --- */
main.diensten-container .diensten-blok h3 {
  font-size: 20px;
  color: #3c3c8a;
  margin-bottom: 12px;
  font-weight: 600;
}

main.diensten-container .diensten-blok p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* --- Datum onderaan --- */
main.diensten-container .diensten-blok .datum {
  font-size: 12px;
  font-weight: bold;
  color: #111827;
  margin-top: auto;
}

/* --- Fade-in animatie --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsieve instellingen --- */
@media screen and (max-width: 1024px) {
  main.diensten-container .diensten-link {
    flex: 1 1 calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  main.diensten-container .diensten-grid {
    flex-direction: column;
    gap: 20px;
  }

  main.diensten-container .diensten-link {
    flex: 1 1 100%;
  }

  main.diensten-container .diensten-blok {
    transform: none !important;
  }
}/* End custom CSS */