:root {
  --green: #165F38;
  --lime: #9ACB3B;
  --bg: #f6f8f5;
  --text: #1a1a1a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
header {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.05);
  position: sticky;
  top: 0;
  z-index: 99;
}
.topbar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.brand img {
  height: 48px;
}
.brand h1 {
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--green);
}
.call-btn {
  background: var(--lime);
  color: #fff;
  text-decoration: none;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 2px solid transparent;
}
.call-btn:hover { border-color: rgba(0,0,0,.08); }
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 1.5rem auto 1.25rem;
  padding: 0 1.25rem;
  align-items: center;
}
.hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: .35rem;
  color: var(--green);
}
.hero-content p {
  max-width: 540px;
}
.hero-phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  margin: .5rem 0 1rem;
}
.hero img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  background: #e9efe5;
  object-fit: cover;
  max-height: 360px;
}
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.5rem;
}
h3.section-title {
  font-size: 1.6rem;
  margin-bottom: .35rem;
  color: var(--green);
}
.intro-text {
  margin-bottom: 1.4rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.75rem;
}
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.04);
  border-radius: 1.1rem;
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: 0 8px 26px rgba(0,0,0,.025);
}
.card img {
  height: 42px;
  width: auto;
  margin-bottom: .55rem;
}
.card h4 {
  margin: 0 0 .4rem;
  font-size: 1.25rem;
  color: var(--green);
}
.card small {
  display: block;
  color: #6a6a6a;
  font-size: .82rem;
}
.office {
  background: #f0f5ea;
  border: 1px solid rgba(0,0,0,.03);
  border-radius: 1rem;
  padding: 1rem 1.25rem 1.3rem;
  margin-bottom: 1.6rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  align-items: flex-start;
}
.office h4 {
  margin: 0 .25rem .25rem 0;
  font-size: 1.25rem;
  color: var(--green);
}
.office .office-phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}
.office .call-link {
  display: inline-block;
  margin-top: .50rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
}
.areas-title {
  font-weight: 600;
  margin-bottom: .5rem;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: .5rem .75rem;
}
.area-item {
  display: flex;
  gap: .35rem;
  align-items: center;
  font-size: .9rem;
}
.area-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--lime);
  display: inline-block;
}
.qa {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,.03);
  padding: 1.25rem 1.25rem 1.4rem;
  margin-bottom: 2rem;
}
details {
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding: .5rem 0 .5rem;
}
details:last-child { border-bottom: none; }
summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green);
}
footer {
  background: #081f15;
  color: #fff;
  padding: 1.3rem 1.25rem 1.3rem;
  text-align: center;
  font-size: .8rem;
}
footer a { color: #fff; text-decoration: underline; }
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .office {
    grid-template-columns: 1fr;
  }
  .hero-content h2 { font-size: 1.8rem; }
  .topbar { flex-wrap: wrap; justify-content: center; }
}
