:root{
  --bg:#f6f7f9;
  --card:#ffffff;
  --accent:#1f6f3a;
  --muted:#6b7280;
  --gap:14px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#111827;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:100vh;
}
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.brand{display:flex;align-items:center;gap:10px}
.logo{width:56px;height:56px;object-fit:contain;border-radius:8px;background:#fff;padding:6px}
.company-name{font-weight:700}
.nit{font-size:12px;color:var(--muted)}
.socials{display:flex;gap:8px}
.social{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:#fff;color:var(--muted);text-decoration:none;font-weight:600}

.main{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-content:start;
  max-width:1100px;
  margin:0 auto;
  width:100%;
}

.hero{position:relative;border-radius:12px;overflow:hidden;background:linear-gradient(90deg,#ffffff 0%, #f8fafb 100%);display:flex;align-items:center;gap:12px;padding:14px}
.hero-img{width:160px;height:120px;object-fit:cover;border-radius:8px;flex-shrink:0}
.hero-text h1{margin:0;font-size:18px}
.hero-text p{margin:6px 0 0;color:var(--muted);font-size:13px}

.services h2, .locations h2, .about h2, .contact h2{margin:0 0 8px 0;font-size:16px}
.cards{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.card{background:var(--card);padding:10px;border-radius:10px;box-shadow:0 1px 4px rgba(0,0,0,0.04)}
.card img{width:100%;height:96px;object-fit:cover;border-radius:6px}
.card h3{margin:8px 0 4px 0;font-size:14px}
.card p{margin:0;color:var(--muted);font-size:13px}

.locations .list{display:flex;flex-direction:column;gap:8px;padding:0;margin:0;list-style:none}
.map-placeholder img{width:100%;height:120px;object-fit:cover;border-radius:8px;margin-top:10px}

.about p{margin:0 0 8px 0;color:var(--muted)}
.bullets{padding-left:18px;margin:0;color:var(--muted)}

.contact form{display:flex;flex-direction:column;gap:8px}
.contact label{display:flex;flex-direction:column;font-size:13px;color:#111827}
.contact input,.contact textarea{padding:8px;border-radius:8px;border:1px solid #e5e7eb;background:#fff}
.form-row{display:flex;gap:8px;margin-top:6px}
.btn{background:var(--accent);color:#fff;padding:10px 12px;border-radius:8px;border:none;cursor:pointer}
.btn.alt{background:#fff;color:var(--accent);border:1px solid #e6e8ea}

.footer{display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-size:13px;max-width:1100px;margin:0 auto}

@media (min-width:900px){
  .main{grid-template-columns:1fr 360px;gap:18px}
  .hero{grid-column:1 / -1}
  .cards{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:480px){
  body{padding:12px}
  .cards{grid-template-columns:1fr}
  .topbar{align-items:flex-start}
}