body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

header {
  background: #2f6fa5;
  color: #fff;
  padding: 20px 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 0;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin-top: 15px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

/* ✅ CONSENT CHECKBOX — FIXED ALIGNMENT */
label.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
}

label.consent input[type="checkbox"] {
  margin: 0;
  width: auto;
}

label.consent span {
  line-height: 1.4;
}

/* Buttons */
button {
  margin-top: 20px;
  background: #2f6fa5;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background: #24557d;
}

/* Return Home button */
.home-button {
  display: inline-block;
  margin-top: 20px;
  background: #2f6fa5;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
}

.home-button:hover {
  background: #24557d;
}

/* Accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 3px solid #2f6fa5;
  outline-offset: 2px;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

.hero {
  text-align: center;
}

.hero h1 {
  font-size: 1.8rem;   /* smaller than default */
  margin-bottom: 10px;
}

.hero p {
  font-size: 1rem;     /* smaller paragraph text */
}