/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set a background color for the whole page */
body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
}

/* Style the form container */
main {
  background-color: #fff;
  margin: 20px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Style the title and description */
#title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

#description {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

/* Style form labels and inputs */
label {
  display: block;
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

select {
  height: 40px;
}

/* Style the radio buttons and checkboxes */
input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
}

/* Style the submit button */
#submit {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* Additional styling for improvements section */
#improvements {
  margin-top: 10px;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  main {
    margin: 10px;
  }
}