* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafafa;
}

a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

nav {
  background: #1a1a2e;
  padding: 1rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  color: #e0e0e0;
  font-size: 0.95rem;
}

nav a:first-child {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-right: auto;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

h2 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.5rem;
  color: #222;
}

p, li { color: #333; margin-bottom: 0.6rem; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}

/* Contact form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
}

label { font-weight: 600; font-size: 0.9rem; color: #333; }

input, textarea {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: -1px;
  border-color: #2563eb;
}

textarea { min-height: 120px; resize: vertical; }

button {
  background: #1a1a2e;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  width: fit-content;
}

button:hover { background: #2a2a4e; }

/* Definition list for compliance clarity */
dl { margin: 1rem 0; }
dt { font-weight: 700; margin-top: 0.8rem; color: #111; }
dd { margin-left: 1rem; color: #444; }
