:root {
  --brand: #0b63ce;        /* primary brand blue (from your site) */
  --brand-2: #0b8fce;      /* gradient accent */
  --ink: #111827;          /* text */
  --muted: #6b7280;        /* muted text */
  --border: #e5e7eb;       /* borders */
  --bg: #ffffff;           /* background */
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 16px; }

header {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.logo img { width: 180px; height: auto; }

.top-ctas {
  display: none;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 900px) { .top-ctas { display: flex; } }
.top-ctas a {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.menu-toggle {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

nav {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 10px 0 20px;
}
.nav-inner {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}
nav.open .nav-inner, #primaryNav.open .nav-inner { display: flex; }
@media (min-width: 900px) { .nav-inner { display: flex; } }
.nav-inner a {
  padding: 6px 10px;
  border-radius: 8px;
}
.nav-inner a:hover {
  background: #f2f6ff;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  margin-bottom: 18px;
}
.hero h2 { margin: 0; font-weight: 700; letter-spacing: 0.2px; }

.grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

form .form-row { margin-bottom: 14px; }
label { display: inline-block; margin-bottom: 6px; font-weight: 600; }
input[type='text'], select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
}
textarea { min-height: 90px; resize: vertical; }
.actions { display: flex; justify-content: center; }
.btn-primary {
  cursor: pointer;
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 14px rgba(11,99,206,.25);
}
.btn-primary:hover { filter: brightness(1.05); }

.content h1, .content h2, .content h3 { margin-top: 0; }
.content p { margin: 0 0 12px; }
.city-links a { display: inline-block; margin: 0 8px 8px 0; }

.muted { color: var(--muted); font-size: .92rem; }
#cap,
label[for="cap"],
.lead-form input[name="cap"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (min-width: 900px) {
  .grid {
    grid-template-columns: 30% 70%;
  }
}
.privacy-note {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #4b5563; /* muted gray */
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}

.privacy-note .icon {
  font-size: 1.2rem;
  margin-right: 6px;
  vertical-align: middle;
}

.privacy-note a {
  color: var(--brand);
  font-weight: 600;
}

.privacy-note a:hover {
  text-decoration: underline;
}
:where(h1) {
  margin-block: 0.67em;
  font-size: 2em;
}