* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #005eb8; /* Similar blue tone as seen on Kloosmans */
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-info {
  font-size: 16px;
}

@media (max-width: 600px) {
  .container {
    padding: 15px;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }
}
