body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f7fb;
  color: #222;
  line-height: 1.6;
}

nav {
  background: #1f2937;
  padding: 16px 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

nav a {
  color: #fff;
  margin: 0 14px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

nav a:hover {
  color: #ff6600;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
}

h1 {
  color: #111827;
  margin-bottom: 15px;
  font-size: 48px;
}

h2 {
  margin-top: 30px;
  color: #111827;
  font-size: 22px;
}

p {
  margin-bottom: 15px;
  font-size: 17px;
}

ul {
  margin: 15px 0 20px 25px;
  font-size: 17px;
}

form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  margin-top: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 15px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button {
  background: #ff6600;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

button:hover {
  background: #e65c00;
}
.state-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  margin: 20px 0 30px;
}

.state-links a {
  display: block;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dbe3ee;
  text-decoration: none;
  color: #111827;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0,0,0,0.04);
}

.state-links a:hover {
  background: #ff6600;
  color: #fff;
}