/* Algemene styling voor het formulier */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px !important;
  }
  h2 {
    font-size: 22px !important;
  }
}
.et_pb_gallery_image img {
  width: 100% !important;
}
.wpcf7-form {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  color: #333;
}
/* Inputvelden, textarea, select */
.wpcf7-form-control {
  width: 100%;
  padding: 12px !important;
  /* Verhoogde padding voor meer ruimte binnen de velden */
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
/* Focus state voor velden */
.wpcf7-form-control:focus {
  border-color: #e02b20;
  outline: none;
}
/* Submit button */
.wpcf7-submit {
  background-color: #e02b20;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.wpcf7-submit:hover {
  background-color: #b42219;
}
/* Checkboxen en radiobuttons */
.wpcf7-form-control[type="checkbox"], .wpcf7-form-control[type="radio"] {
  width: auto;
  margin-right: 10px;
}
/* Styling voor select-velden */
.wpcf7-form-control select {
  width: 100%;
  padding: 12px;
  /* Verhoogde padding toegevoegd */
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  appearance: none;
}
/* Labels */
.wpcf7-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}
/* Responsieve styling */
@media (max-width: 600px) {
  .wpcf7-form-control {
    padding: 12px;
    /* Responsieve aanpassing voor kleinere schermen */
  }
  .wpcf7-submit {
    width: 100%;
  }
}
/* Validatie feedback */
.wpcf7-not-valid-tip {
  color: #e02b20;
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
}
.wpcf7-form-control.wpcf7-not-valid {
  border-color: #e02b20;
}
.wpcf7-response-output {
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.wpcf7-mail-sent-ok {
  border-color: #4caf50;
  color: #4caf50;
}
.wpcf7-validation-errors {
  border-color: #e02b20;
  color: #e02b20;
}
.wpcf7-spinner {
  display: inline-block;
  margin-left: 10px;
}
/* Highlight kleur voor actieve velden */
.wpcf7-form-control:focus {
  box-shadow: 0 0 5px rgba(224, 43, 32, 0.5);
}
/* Animatie voor de knop bij hover */
.wpcf7-submit:hover {
  opacity: 0.9;
}
/* Extra styling voor optionele velden zoals select, radio en checkbox */
.wpcf7-form-control-wrap select:focus, .wpcf7-form-control-wrap input[type="radio"]:focus, .wpcf7-form-control-wrap input[type="checkbox"]:focus {
  border-color: #e02b20;
  outline: none;
}
/* Minimalistische styling voor radio/checkbox labels */
.wpcf7-form .wpcf7-list-item-label {
  display: inline-block;
  margin-right: 20px;
  cursor: pointer;
}
/* Styling voor eventuele foutmeldingen */
.wpcf7-validation-errors, .wpcf7-acceptance-missing {
  color: #e02b20;
  font-size: 14px;
  margin-top: 10px;
  border: 1px solid #e02b20;
  padding: 10px;
  border-radius: 4px;
}
