/* ===== base styles ===== */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #f9f9f9;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  color: #002b5c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== header/nav ===== */
header {
  background: #002b5c;
  color: white;
  padding: 10px 20px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== main content ===== */
main {
  padding: 40px 20px;
}

section {
  margin-bottom: 60px;
}

/* ===== hero section ===== */
.hero {
  padding: 60px 20px;
  background: #dce3ea;
  text-align: center;
  border-bottom: 2px solid #c2ccd6;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== content sections ===== */
.mission,
.updates,
.quick-links,
.legal-statement,
.victim-support-banner {
  max-width: 800px;
  margin: 0 auto;
}

.mission h2,
.updates h2,
.quick-links h2,
.legal-statement h2,
.victim-support-banner h2 {
  font-size: 1.5rem;
  border-left: 5px solid #002b5c;
  padding-left: 10px;
  margin-bottom: 10px;
  color: #002b5c;
}

.updates ul,
.quick-links ul {
  list-style: disc;
  padding-left: 20px;
}

.quick-links ul li {
  margin-bottom: 8px;
}

.legal-statement p {
  font-style: italic;
  color: #333;
}

.victim-support-banner {
  background: #fef1f1;
  border-left: 5px solid #c0392b;
  padding: 20px;
  font-weight: bold;
}

/* ===== footer ===== */
footer {
  background: #002b5c;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
}
