.container {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

.service-page {
  padding-bottom: 60px;
}

.service-hero {
  padding: 56px 0 26px;
}

.service-hero__content {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-hero h1 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
}

.service-hero__intro {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.75;
  max-width: 900px;
}

.service-issues,
.service-content {
  padding: 26px 0;
}

.service-card,
.content-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 34px 32px;
}

.service-card h2,
.content-card h2 {
  margin: 0 0 20px;
  color: var(--heading);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.issues-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 18px 32px;
}

.issues-grid li {
  position: relative;
  padding-left: 34px;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 600;
}

.issues-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 900;
}

.content-card p {
  margin: 0 0 22px;
  font-size: 1.15rem;
  line-height: 1.75;
}

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
}

.nearby-links a,
.nearby-links span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #bfd1e4;
  background: #f8fbff;
  color: #0c4a7d;
  text-decoration: none;
  font-weight: 700;
}

.nearby-links a:hover,
.nearby-links a:focus {
  background: #eef6ff;
}

/* Service Area Links */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-area-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  color: var(--nav-bg);
  transition: all 0.2s ease;
  text-align: center;
}

.service-area-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* CTA Section inside Service Page */
.service-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 760px) {
  .service-hero {
    padding-top: 34px;
  }

  .service-card,
  .content-card {
    padding: 24px 20px;
  }

  .issues-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .issues-grid li {
    font-size: 1.08rem;
  }

  .service-hero__intro,
  .content-card p {
    font-size: 1.05rem;
    line-height: 1.65;
  }
}
