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

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 5rem;
}

.text span {
  display: inline-block;
  animation: moveLow 2s infinite ease-in-out;
}

@keyframes moveLow {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }
  50% {
    transform: translate(1px, -1px) rotate(0.5deg);
  }
  75% {
    transform: translate(-1px, -1px) rotate(-0.3deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes moveHigh {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(3px, -4px) rotate(2deg);
  }
  50% {
    transform: translate(-3px, 4px) rotate(-2deg);
  }
  75% {
    transform: translate(4px, 2px) rotate(3deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

.question {
  margin-top: 20px;
  font-weight: bold;
}

h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
}

.tijd {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.main-content {
  display: flex;
  gap: 20px;
}

.form-section {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  position: relative;
}

.answer-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.answer {
  margin-top: 20px;
  font-weight: bold;
  background-color: #e8f5e9;
  border-radius: 8px;
  padding: 8px 15px;
  max-width: 350px;
}

.answer:hover {
  background-color: #c8e6c9;
}

.check-button {
  background-color: #6b4b7d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  max-width: 200px;
}

.result {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.send-button {
  background-color: #009b4d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.send-button:hover {
  background-color: #007a3d;
}

.button-container {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 2rem;
}

.next-button {
  background-color: #009b4d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.next-button:hover {
  background-color: #007a3d;
}

.simulatiebutton {
  background-color: #009b4d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 20px;
}

.simulatiebutton:hover {
  background-color: #007a3d;
}
.simulatiebutton:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.intensiteit {
  background-color: #6b4b7d;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  outline: none;
  text-align: left;
  padding: 10px 40px 10px 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.info-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  overflow: hidden;
}
.info-header {
  background-color: #6b4b7d;
  color: white;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-header h3 {
  margin: 0;
  font-size: 18px;
}

.arrow {
  font-size: 24px;
}

.expanded .arrow {
  font-size: 24px;
  transform: rotate(180deg);
}

.info-content {
  background-color: #e9e9e9;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}

.hidden {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}
