* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f6f7f8;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #102030;
  color: white;
  padding: 2rem 0;
}

.site-header h1 {
  margin: 0;
  font-size: 2.4rem;
}

.tagline {
  margin-top: 0.4rem;
  color: #d6e4f0;
}

nav {
  margin-top: 1.2rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin-right: 1rem;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: white;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero h2 {
  margin-top: 0;
  font-size: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
}

.card {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
}

.button {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.6rem 0.9rem;
  background: #204b73;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.button:hover {
  background: #163957;
}

footer {
  background: #102030;
  color: white;
  padding: 1rem 0;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr;
  }

  nav a {
    display: block;
    margin: 0.4rem 0;
  }
}

.source-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: white;
}

.source-table th,
.source-table td {
  border: 1px solid #d0d7de;
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}

.source-table th {
  background: #204b73;
  color: white;
}

.source-table tr:nth-child(even) {
  background: #f1f4f7;
}

.article {
  background: white;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 850px;
}

.article h2 {
  margin-top: 2rem;
  color: #102030;
}

.article p {
  font-size: 1.05rem;
}

.article ul {
  padding-left: 1.4rem;
}

.article li {
  margin-bottom: 0.5rem;
}

.article-date {
  color: #667;
  font-weight: bold;
  margin-top: 0;
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 5px solid #204b73;
  background: #f1f4f7;
  font-size: 1.1rem;
}

.proposal-grid {
  align-items: stretch;
}

.proposal-card {
  position: relative;
}

.card-label {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.55rem;
  background: #e6eef5;
  color: #204b73;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: bold;
}

.muted-card {
  opacity: 0.78;
}

.disabled-button {
  background: #88929c;
  cursor: default;
}

.disabled-button:hover {
  background: #88929c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: white;
}

.footer-grid p {
  margin: 0.35rem 0;
  color: #d6e4f0;
}

.footer-grid a {
  color: #d6e4f0;
  text-decoration: none;
}

.footer-grid a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  color: #d6e4f0;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.status-box {
  background: #e6eef5;
  border-left: 5px solid #204b73;
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: 10px;
}

.status-box h2 {
  margin-top: 0;
  color: #102030;
}