body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.5;
}

.content-wrapper {
  margin: auto;
  padding: 20px;
  max-width: 1000px;
}

.nav-bar {
  background-color: #fff;
  padding: 5px 20px;
  margin: 20px 0px;
  /* text-align: center; */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  max-height: 200px;
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 10px;
} 

.main-content {
  margin: 30px 0px;
}

.nav-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  margin: 6px 12px;
  text-decoration: none;
  color: inherit;
}
.nav-links a:hover {
  text-decoration: underline;
}

form.responsive-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px 16px;
}

form.responsive-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

form.responsive-form .field.full {
  grid-column: 1 / -1;
}

form.responsive-form .field.half {
  grid-column: span 6;
}

form.responsive-form h2,
form.responsive-form h3,
form.responsive-form h4 {
  grid-column: 1 / -1;
  margin-top: 16px;
  margin-bottom: 8px;
}

form.responsive-form input,
form.responsive-form select,
form.responsive-form textarea {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
  min-height: 38px;
}

form.responsive-form textarea {
  min-height: 96px;
  resize: vertical;
}

/* Small screens: single column */
@media (max-width: 640px) {
  form.responsive-form {
    grid-template-columns: 1fr;
  }
  form.responsive-form .field,
  form.responsive-form .field.full,
  form.responsive-form .field.half {
    grid-column: 1 / -1;
  }
}
