/* Simple, clean CSS with proper spacing */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

h1, h2, p {
  text-align: center;
  margin-top: 1rem;
}

h1 {
  color: #0078d7;   
}

h2 {
  color: #333333;   
}

p {
  color: #555555;   
}

ul {
  list-style-type: disc;
  list-style-position: inside;
  padding: 0;
  text-align: center;
  margin: 1rem 0;
}

li {
  margin: 0.4rem 0;
  font-size: 1.1rem;
}


main {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  align-items: center;   
  gap: 1rem;
}

label {
  font-weight: bold;
  align-self: flex-start;
  margin-left: 10%;
}

input[type="text"],
input[type="email"],
textarea {
  width: 80%;           
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #0078d7;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}


/* Survey Styling */
.radio-group {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.radio-group label {
  font-weight: normal;    
  align-self: center;
  white-space: nowrap;
}

.checkbox-group {
  display: flex;
  justify-content: center;   
  align-items: center;                    
}
