*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    -sans-serif;
  color: #1f2933;
  background-color: #f5f7fa;
}

body {
  line-height: 1.5;
}

a {
  color: #1c4f82;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #d8e2ec;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.org-name {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: #102a43;
}

.org-tagline {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: #52606d;
}

.header-cta {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid #1c4f82;
  color: #1c4f82;
  background-color: #ffffff;
}

.header-cta:hover,
.header-cta:focus {
  background-color: #f0f4f8;
  text-decoration: none;
}

.hero {
  background-color: #e4edf7;
  border-bottom: 1px solid #d8e2ec;
}

.hero-content {
  padding: 32px 16px 28px 16px;
}

.hero-text h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 28px;
  color: #102a43;
}

.hero-subtitle {
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 700px;
}

.hero-list {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 18px;
}

.hero-note {
  font-size: 13px;
  color: #616e7c;
  margin-top: 8px;
}

.primary-cta {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px;
  background-color: #1c4f82;
  color: #ffffff;
  font-size: 15px;
}

.primary-cta:hover,
.primary-cta:focus {
  background-color: #163a5c;
  text-decoration: none;
}

.section {
  background-color: #f5f7fa;
}

.section-muted {
  background-color: #ffffff;
  border-top: 1px solid #d8e2ec;
  border-bottom: 1px solid #d8e2ec;
}

.section-highlight {
  background-color: #e9f2fb;
  border-top: 1px solid #d8e2ec;
}

.section .container {
  padding: 28px 16px;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  color: #102a43;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 20px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.two-column > div {
  flex: 1 1 280px;
}

.numbered-list,
.bulleted-list {
  padding-left: 20px;
}

.numbered-list li + li,
.bulleted-list li + li {
  margin-top: 6px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 16px;
  color: #102a43;
}

.faq-item p {
  margin: 0;
  font-size: 14px;
}

.form-embed-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #cbd2d9;
  padding: 8px;
}

.airtable-embed {
  border-radius: 2px;
}

.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #d8e2ec;
  margin-top: 16px;
}

.footer-content {
  padding: 16px;
  text-align: center;
}

.footer-content p {
  margin: 4px 0;
  font-size: 13px;
  color: #52606d;
}

.footer-note {
  font-size: 12px;
}

@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-text h1 {
    font-size: 24px;
  }
}


