* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Google Sans', sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}

h1 {
  text-align: center;
  color: #051145;
  margin-bottom: 30px;
  font-size: 2rem;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

label {
  display: block;
  color: #051145;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  background-color: white;
  color: #051145;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: #DCCBB0;
  box-shadow: 0 0 0 2px rgba(220, 203, 176, 0.2);
}

button {
  width: 100%;
  background-color: #DCCBB0;
  color: #051145;
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Google Sans', sans-serif;
}

button:hover {
  background-color: #C2A58A;
}

button:active {
  background-color: #B89570;
}

.result-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-card h2 {
  color: #051145;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

#resultaat {
  color: #051145;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 5rem;
    margin-bottom: 20px;
  }

  .card,
  .result-card {
    padding: 20px;
  }

  .grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  select {
    padding: 8px;
    font-size: 0.9rem;
  }

  button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  label {
    font-size: 0.9rem;
  }

  .result-card h2 {
    font-size: 1.2rem;
  }

  #resultaat {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .card,
  .result-card {
    padding: 15px;
    border-radius: 4px;
  }

  .grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  select {
    padding: 14px 12px;
    font-size: 1.1rem;
    width: 100%;
  }

  button {
    padding: 16px 12px;
    font-size: 1.1rem;
    height: 50px;
  }

  label {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .result-card h2 {
    font-size: 1rem;
  }

  #resultaat {
    font-size: 0.95rem;
  }
}