* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;

  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;

  background: #f4f6f8;
}

.header {
  background: #7300ff;

  color: white;

  padding: 20px;

  text-align: center;
}

section {
  padding: 50px 20px;

  min-height: 100vh;
}

#contact {
  background: #d1d5db;
}

.contact-section {
  min-height: auto;
}

.contact-card {
  border-top: 6px solid #4f46e5;
}

.contact-card .form-label,
.contact-card .form-check-label {
  font-weight: 600;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: #4f46e5;

  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.2);
}

.page {
  display: flex;

  gap: 45px;

  justify-content: center;
}

.card-container {
  display: flex;

  gap: 30px;

  flex-wrap: wrap;
}

.card {
  width: 230px;

  background: white;

  border-radius: 10px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;

  height: 145px;

  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-body p {
  margin: 10px 0;
}

.btn-leesmeer {
  display: inline-block;

  margin-top: 10px;

  padding: 9px 14px;

  background: #4f46e5;

  color: white;

  text-decoration: none;

  border-radius: 6px;

  transition: 0.3s;
}

.btn-leesmeer:hover {
  background: #4338ca;

  transform: scale(1.05);
}

.detail-section {
  background: white;

  border-bottom: 1px solid #e5e7eb;
}

.detail-box {
  max-width: 800px;

  background: #f9fafb;

  padding: 25px;

  border-radius: 10px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.detail-box p {
  line-height: 1.7;

  margin-bottom: 12px;
}

.back-link {
  display: inline-block;

  margin-top: 15px;

  color: #4f46e5;

  text-decoration: none;

  font-weight: bold;
}

.back-link:hover {
  text-decoration: underline;
}

.reclame {
  background: #26006b;

  color: white;

  padding: 12px;

  border-radius: 5px;

  width: 230px;
}

.reclame-afbeelding {
  width: 100%;

  height: 140px;

  object-fit: cover;
}

.footer {
  min-height: auto;
}

.footer-link {
  color: #d1d5db;

  text-decoration: none;
}

.footer-link:hover {
  color: white;
}

.contact-result-section {
  background: #d1d5db;

  min-height: 100vh;
}

.contact-result-list {
  display: grid;

  gap: 12px;

  margin-bottom: 24px;
}

.contact-result-list dt {
  font-weight: 700;
}

.contact-result-list dd {
  margin: 0;

  padding: 12px;

  background: #f9fafb;

  border-radius: 8px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;

    align-items: center;
  }
}

.uitleg-video {
  max-width: 800px;
  margin-top: 30px;
}

.uitleg-video video {
  display: block;
  border-radius: 12px;
  background: #000;
}
