* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f3f0; /* zachte neutrale beige tint */
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 700px;
  width: 100%;
  border-top: 6px solid #570000;
}

header img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

main h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #570000;
}

main p {
  font-size: 1.2rem;
  color: #444;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
.gdpr {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #666;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }

  header img {
    width: 100%;
    height: auto;
  }

  main h1 {
    font-size: 2rem;
  }

  main p {
    font-size: 1rem;
  }

  footer,
  .gdpr {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  main h1 {
    font-size: 1.6rem;
  }

  main p {
    font-size: 0.95rem;
  }
}
