body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #111;
  color: #fff;
}

/* Contact Sectie */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: #111;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: #1f1f1f;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.contact h2 {
  font-size: 2.5rem;
  color: #ff3d00;
  margin-bottom: 15px;
}

.contact p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 1rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact label {
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ff3d00;
}

.contact input,
.contact select,
.contact textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background: #303030;
  color: #fff;
  font-size: 1rem;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  outline: 2px solid #ff3d00;
}

.contact button.btn {
  margin-top: 10px;
  background: #ff3d00;
  color: #000;
  font-weight: bold;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: b
}

.contact fieldset {
  border: 1px solid #ff3d00;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #fff;
}

.contact legend {
  font-weight: bold;
  color: #ff3d00;
}

.contact input[type="checkbox"] {
  margin-right: 10px;
}

input[type="checkbox"] {
  display: inline-block;
  margin-right: 8px;
}

form label {
  display: block;
  margin: 8px 0 4px;
}

form input[type="checkbox"] + label {
  display: inline; /* als je de labels los hebt */
}