/* ---- Base Reset ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  color: #111;
  background: #fff;
}

/* ---- Layout ---- */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* ---- Header ---- */
header {
  background: #f7f7f7;
  border-bottom: 1px solid #ddd;
  text-align: center;
  padding: 32px 16px;
}

.logo {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
}

.logo:hover {
  background: #f9f9f9;
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

header p {
  font-size: 1rem;
  margin-bottom: 16px;
}

/* ---- CTA Button ---- */
.cta {
  display: inline-block;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.cta:hover {
  background: #000;
}

/* ---- Main Content ---- */
main section {
  margin-bottom: 24px;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* ---- County List ---- */
.county-list {
  list-style: none;
  columns: 2;
  column-gap: 24px;
}

.county-list li {
  margin-bottom: 6px;
}

.county-list a {
  text-decoration: none;
  color: #0066cc;
}

.county-list a:hover {
  text-decoration: underline;
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid #ddd;
  margin-top: 32px;
  padding: 16px;
  font-size: 0.9rem;
  text-align: center;
  color: #555;
}

footer a {
  color: #0066cc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ---- Mobile Sticky Call Bar ---- */
@media (max-width: 680px) {
  .county-list {
    columns: 1;
  }

  header {
    padding-bottom: 72px;
  }

  .sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    text-align: center;
    padding: 14px;
    z-index: 999;
  }

  .sticky-call a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
  }
}
