
:root{
  --sustenamex-green:#6aa84f;
  --divider-grey:#cfcfcf;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#ffffff;
  --maxw:1100px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

/* HEADER */
.site-header{ padding-top:18px; }

.top-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:12px;
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
}

.brand img{
  width:72px;
  height:auto;
  display:block;
  margin-left:-10px;
}

.brand-text .company{
  font-weight:700;
  font-size:16px;
}

.brand-text .tagline{
  font-size:13px;
  color:var(--muted);
}

.social{
  display:flex;
  gap:14px;
  font-size:13px;
  color:var(--muted);
}

.divider-green{
  height:4px;
  background:var(--sustenamex-green);
}

.divider-grey{
  height:1px;
  background:var(--divider-grey);
}

.nav-row{
  padding:10px 0 12px;
}

.site-nav{
  display:flex;
  gap:22px;
  font-size:14px;
  font-weight:600;
  margin-left:22px;
}

/* CONTENT */
main{
  padding:40px 0 48px;
}

.page{
  max-width:920px;
}

.page h1{
  font-size:28px;
  margin:0 0 18px 0;
}

.page h2{
  font-size:20px;
  margin:28px 0 10px 0;
}

.page p{
  font-size:16px;
  line-height:1.65;
  margin:0 0 14px 0;
}

.bullets{
  list-style:none;
  padding-left:0;
}

.bullets li{
  display:flex;
  gap:12px;
  margin:8px 0;
}

.bullets li::before{
  content:"●";
  color:var(--sustenamex-green);
  font-size:18px;
}

/* FOOTER */
.site-footer{
  padding:22px 0 26px;
  font-size:12.5px;
  color:var(--muted);
}

.footer-bottom{
  margin-top:14px;
}


/* Services – card layout */
.svc-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  margin-top:18px;
}

.svc-card{
  border:1px solid var(--divider-grey);
  border-radius:10px;
  padding:18px 18px 16px;
}

.svc-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:6px;
}

.svc-badge{
  width:28px;
  height:28px;
  border-radius:8px;
  background:var(--sustenamex-green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  flex:0 0 auto;
}

.svc-card h2{
  margin:0;
  font-size:18px;
  line-height:1.25;
}

.svc-sub{
  margin-top:10px;
  font-weight:700;
  font-size:14px;
}

.svc-list{
  list-style:none;
  padding-left:0;
  margin:8px 0 0;
}

.svc-list li{
  display:flex;
  gap:10px;
  margin:7px 0;
}

.svc-list li::before{
  content:"●";
  color:var(--sustenamex-green);
  font-size:16px;
  line-height:1;
  margin-top:3px;
}

.svc-note{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  margin-top:10px;
}

.svc-foot{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--divider-grey);
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:10px;
  font-size:14px;
}

.svc-label{
  color:var(--muted);
  font-weight:700;
}
