/* Base layout */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #0A1A2F;
  color: #FFFFFF;
  margin: 0;
}

/* Header and navigation */
header {
  background: #0A1A2F;
  padding: 16px 24px;
  border-bottom: 3px solid #00B3A4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00B3A4;
}

nav a {
  color: #FFFFFF;
  margin-left: 16px;
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  text-decoration: underline;
}

nav a.active {
  color: #FFD166;
  font-weight: 600;
}

/* Main content */
main {
  background: #FFFFFF;
  color: #0A1A2F;
  padding: 32px 24px 40px;
  margin: 24px;
  border-radius: 8px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

main h1 {
  font-size: 2rem;
  margin-top: 0;
}

main h2 {
  font-size: 1.4rem;
  margin-top: 1.8rem;
}

main h3 {
  font-size: 1.1rem;
  margin-top: 1.2rem;
}

p {
  line-height: 1.6;
  margin: 0.6rem 0 0.8rem;
}

ul {
  padding-left: 1.2rem;
}


.pledge-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.pledge-row label {
  width: 180px; /* controls label width */
  font-size: 1rem;
}

.pledge-row input {
  flex: 1;                 /* makes the box stretch */
  padding: 0.75rem 1rem;   /* makes the box taller and roomier */
  font-size: 1.1rem;       /* larger text */
  border-radius: 10px;     /* smoother corners */
  border: 1px solid #c5c9d6;
  width: 100%;             /* ensures full width */
  max-width: 500px;        /* optional: cap the size */
}

/* Hero section */
.home .hero {
  margin-bottom: 2rem;
  max-width: 1200px;      /* NEW: allow wider hero container */
  margin