:root{
  --bg:#f7f7f7;
  --card:#ffffff;
  --accent:#0b7a53;
  --muted:#666;
  --radius:12px;
  --pad:16px;
  --gap:12px;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#111;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding:12px;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  gap:12px;
}

/* Topbar */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo{height:44px}
.contact{display:flex;flex-direction:column;align-items:flex-end;font-size:13px}
.contact a{color:var(--muted);text-decoration:none}

/* Main layout */
.container{
  display:grid;
  gap:12px;
  width:100%;
}

/* Cards */
.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:var(--pad);
  box-shadow:0 6px 18px rgba(12,15,20,0.06);
}

/* Hero */
.hero{display:flex;gap:12px;align-items:center}
.hero-img{width:40%;border-radius:10px;object-fit:cover}
.hero-text h1{color:var(--accent);font-size:20px;margin-bottom:6px}
.hero-text p{color:var(--muted);font-size:14px}

/* Services */
.services .service{display:flex;gap:12px;align-items:flex-start;margin-top:12px}
.service-img{width:88px;height:64px;object-fit:cover;border-radius:8px}
.services h3{margin:0 0 6px 0}
.services p{color:var(--muted);font-size:14px}
.more{color:var(--muted);font-size:13px;margin-top:6px}

/* Process and list */
.process ol{padding-left:18px;margin-top:8px;color:var(--muted);font-size:14px}
.process p{margin-top:8px;color:var(--muted)}

/* Location */
.office-img{width:100%;height:120px;object-fit:cover;border-radius:8px;margin-top:8px}

/* Footer */
.footer{display:flex;justify-content:center;align-items:center;padding:8px;font-size:13px;color:var(--muted)}

/* Dark theme variant */
.dark-layout{
  --bg:#0f1720;
  --card:#0b1320;
  --accent:#66d19e;
  --muted:#a9b3bf;
  color:var(--muted);
  background:linear-gradient(180deg,#0b0f14 0%,#0f1720 100%);
}
.dark-layout .card{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow:none;
  border:1px solid rgba(255,255,255,0.04);
}
.dark-layout .topbar, .dark-layout .footer{color:var(--muted)}
.dark-layout .hero-text h1{color:var(--accent)}
.dark-layout .card h2{color:#e6eef5}

/* Responsive tweaks */
@media (max-width:640px){
  .hero{flex-direction:column}
  .hero-img{width:100%;height:140px}
  .contact{align-items:flex-start}
}