/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1b1b1b;
}

/* ───────── Government banner ───────── */

.gov-banner {
  background: #e0e0e0; /* banner background */
  border-bottom: none;  /* remove line */
  font-size: 0.7rem;    /* default banner text size */
}

.gov-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 16px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.gov-flag {
  width: 24px;   /* flag size */
  height: auto;
  display: inline-block;
}

.gov-text {
  flex: 1;
  font-size: inherit; /* scale with banner */
}

.gov-toggle {
  background: none;
  border: none;
  color: #005ea2;
  font-weight: 600;
  cursor: pointer;
  font-size: inherit; /* match banner text size */
}

.gov-toggle:hover {
  text-decoration: underline;
}

/* Expandable details */
.gov-details {
  display: none;
  background: #e0e0e0; /* same as banner when expanded */
  border-top: none;     /* no line between banner and details */
  font-size: 0.9rem;    /* expanded text size */
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  gap: 50px;
  justify-content: space-between; /* side by side */
}

.gov-detail {
  flex: 1;
}

.gov-detail strong {
  display: inline; /* keep strong inline */
  margin-right: 6px;
  margin-bottom: 0;
}

.lock {
  font-size: 0.9em;
}

/* ───────── Main header ───────── */

.main-header {
  background: #112e51; /* usa.gov navy */
  color: white;
}

.header-left {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.seal {
  height: 48px;
  width: auto;
}

.site-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.site-subtitle {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ───────── Content ───────── */

.content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}
