/* Reset styles or use a CSS reset */
html, body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #CAD6DE;
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

header {
  padding: 20px;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.oho-logo {
  text-align: right;
}

.logo-container img {
  max-height: 50px;
  margin: 0 10px;
  color: black;
}

main {
  flex: 1;
}

.questionnaire {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  min-height: calc(100vh - 200px); /* Adjust this value based on your header and footer heights */
}

.questionnaire-card {
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 100px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 24px;
  margin-top: 0;
}

select {
  width: 80%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 20px;
}

button {
  margin-top: 20px;
  background-color: #C88242;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bolder;
  cursor: pointer;
}

footer {
  padding: 20px;
  text-align: center;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content p {
  margin: 0;
}

.footer-content nav a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}

.footer-content nav a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .logo-container img {
    max-height: 30px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
    font-size: 16px;
  }

  .footer-content p {
    margin-bottom: 10px;
  }

  .footer-content nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-content nav a {
    margin: 5px;
  }
}
  
  