
    html, body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      background: #f4f7fa;
      overflow-x: hidden;
    }
    section {
      padding: 3rem 1rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    h2 {
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 2rem;
    }
    .hero {
      position: relative;
      background: url('../img/header.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 6rem 1rem 4rem;
      width: 100vw;
      box-sizing: border-box;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 123, 255, 0.6);
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero-logo {
      position: absolute;
      top: 2rem;
      left: 2rem;
      z-index: 2;
    }
    .hero-logo img {
      height: 50px;
    }
    .hero h1 {
      margin-bottom: 0.2rem;
    }
    .hero p {
      margin-top: 0.2rem;
    }
    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }
    .hero-buttons a {
      background: white;
      color: #007bff;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
    }
    .sobre p {
      max-width: 800px;
      margin: 1rem auto;
      line-height: 1.6;
    }
    .services-background {
      background-color: #ffffff;
      width: 100vw;
      box-sizing: border-box;
    }
    .services-wrapper, .contact-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      padding: 3rem 1rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    .services-wrapper img {
      max-width: 100%;
      border-radius: 12px;
      max-height: 300px;
      object-fit: cover;
    }
    .services-content, .contact-form {
      flex: 1 1 400px;
    }
    .accordion-item {
      border-bottom: 1px solid #ccc;
      padding: 1rem 0;
    }
    .accordion-header {
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      font-weight: bold;
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.4s ease;
    }
    .accordion-item.active .accordion-content {
      max-height: 200px;
      opacity: 1;
      margin-top: 1rem;
    }
    .divider-image {
      height: 200px;
      background-image: url('../img/divider.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .divider-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.7);
    }
    .usp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      text-align: center;
    }
    .usp-item {
      background: white;
      padding: 2rem 1rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      font-weight: bold;
    }
    .usp-item i {
      color: #007bff;
      font-size: 1.25rem;
    }
    .contact-wrapper {
      background-color: #007bff;
      color: white;
      width: 100vw;
      box-sizing: border-box;
    }
    .contact-wrapper h2 {
      width: 100%;
      text-align: center;
      padding-top: 2rem;
      margin-bottom: 0rem;
    }
    .contact-inner {
      align-items: flex-start;
    }
    .contact-info {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contact-box {
      background: white;
      color: #000;
      padding: 1rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .whatsapp-btn {
      background-color: white;
      color: #25D366;
      padding: 0.9rem 1.25rem;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
    }
    .whatsapp-btn:hover {
      background-color: #25D366;
      color: white;
    }
    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contact-form input,
    .contact-form textarea {
      padding: 0.9rem;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }
    .contact-form button {
      background: white;
      color: #007bff;
      border: none;
      padding: 0.9rem;
      font-size: 1rem;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
    }
    .contact-form button:hover {
      background: #0056b3;
      color: white;
    }
    .contact-button {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      background: #007bff;
      color: white;
      border-radius: 50%;
      border: none;
      width: 56px;
      height: 56px;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 999;
    }
    footer {
      background: #007bff;
      color: white;
      text-align: center;
      padding: 1rem;
    }
  

.notification-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 1rem 1.5rem;
  margin: 1rem auto;
  max-width: 800px;
  border-radius: 6px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notification-success button {
  background: none;
  border: none;
  color: #155724;
  font-size: 1.2rem;
  cursor: pointer;
}


.contact-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-intro {
  font-style: italic;
  font-size: 1.2rem;
  color: white;
  font-family: 'Pacifico', cursive;
}

.contact-photo {
  max-width: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


.contact-person {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-container {
  position: relative;
  display: inline-block;
}

.contact-intro {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.9);
  color: #007bff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  transform: rotate(-5deg);
  font-size: 1rem;
  max-width: 200px;
}

.contact-photo {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


.contact-person {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact-intro {
  position: absolute;
  top: -1rem;
  right: -2rem;
  color: white;
  background: none;
  transform: rotate(5deg);
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-photo {
  max-width: 300px;
  border-radius: 12px;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.contact-note {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrow-up {
  width: 30px;
  height: 30px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin-bottom: 0.5rem;
}

.note-text {
  font-family: 'Pacifico', cursive;
  color: white;
  font-size: 1.1rem;
  text-align: center;
}


.contact-person {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact-intro {
  position: absolute;
  top: -1rem;
  right: -2rem;
  color: white;
  background: none;
  transform: rotate(5deg);
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-photo {
  max-width: 300px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.contact-note {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.note-text {
  font-family: 'Pacifico', cursive;
  color: white;
  font-size: 1.1rem;
  text-align: center;
}


.note-text.note-tilted {
  font-family: 'Pacifico', cursive;
  color: white;
  font-size: 1.1rem;
  text-align: center;
  display: block;
  margin-top: 1rem;
  transform: rotate(-3deg);
}


.contact-person {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: -2rem;
}

.contact-intro {
  position: absolute;
  top: 0.5rem;
  right: -2rem;
  color: white;
  background: none;
  transform: rotate(5deg);
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-photo {
  max-width: 300px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.contact-link {
  text-decoration: none;
  color: inherit;
}
.contact-link:hover,
.contact-link:focus {
  text-decoration: none;
  color: inherit;
}


/* WhatsApp button opnieuw stylen */
.whatsapp-btn {
  background-color: white;
  color: #25D366;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 100%;
  box-sizing: border-box;
}

.whatsapp-btn:hover {
  background-color: #25D366;
  color: white;
}

/* Foto zonder border */
.contact-photo {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border: none;
}


@media (max-width: 768px) {
  .contact-person {
    flex-direction: column;
  }
  .contact-intro {
    position: static;
    transform: none;
    margin-top: 0.5rem;
    text-align: center;
  }
}
