/* GENERAL */
@font-face {
  font-family: Hanken Grotesk;
  src: url(https://cdn.postnl.nl/fonts/Hanken-Grotesk.woff2) format("woff2");
}

@font-face {
  font-family: ABC ROM;
  src: url(https://cdn.postnl.nl/fonts/ABCROM-Bold.woff2) format("woff2");
}

/* Reset default margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set a background color and text color for the body */
body {
  background-color: #f4f4f4;
  font-family: ABC ROM;
  color: #001a73;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

p,
ul {
  font-family: Hanken Grotesk;
}

ul {
  padding-left: 22px;
}

/* Create a header with specified styles */
.header {
  display: flex;
  height: 100px;
  background-color: white;
  text-align: center;
  padding: 0 20px;
  /* Add space for the heading within the header */
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.header h1 {
  color: #001a73;
  font-family: Hanken Grotesk;
  margin-left: 16px;
}

.logo {
  width: 76px;
}

/* Center the form container */
.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Style the form header */
.container h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Style the form labels and input fields */
label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

#services-section {
  margin-bottom: 20px;
}

#services-section p {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

#services-section div {
  display: flex;
}

#services-section label {
  display: block;
  margin-bottom: 0px;
  font-weight: normal;
  cursor: pointer;
}

input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

select {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
}

#psp {
  margin-bottom: 0;
}

/* Style the submit button */
button[type="submit"] {
  display: inline-block;
  background-color: #3440b6;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  scale: 1;
  transition: 0.3s;
}

button[type="submit"]:hover {
  background-color: #3440b6;
  scale: 1.1;
  transition: 0.3s;
}

/* Style optional input fields differently */
#tussenvoegsel {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}

/* Add some spacing between form elements */
.form-group {
  margin-bottom: 20px;
}

.required-tag {
  color: #ed7000;
  margin-left: 2px;
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.hide {
  display: none;
}

.show {
  display: block;
}

/* write me some css where the title #form-title has smaller font-size at mobile */
@media screen and (max-width: 769px) {
  #form-title {
    font-size: 1.5em;
  }

  .popup {
    width: 80vw;
  }
}
