/* /pbc-static/assets/css/legal.css */

:root{
  --bg:#ffffff;
  --soft:#f6faf7;
  --text:#102015;
  --muted:#4a5c52;
  --line:rgba(0,0,0,.10);
  --green:#15803d; /* Brand Green */
  --green2:#0f5f2a; /* Dark Brand Green */
  --shadow:0 14px 34px rgba(0,0,0,.08);
  --r:18px;
  --w:900px; /* Slimmer for better text readability */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

/* GLOBAL FONT UPDATE TO LATO */
body, h1, h2, h3, h4, p, div, span, li, a {
  font-family: 'Lato', sans-serif !important;
}

body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height: 1.7;
}

a{ color:inherit; }

.wrap{
  width:min(var(--w), calc(100% - 40px));
  margin:0 auto;
}

/* Header */
.topbar{
  background:linear-gradient(135deg, var(--green), var(--green2));
  color:#fff;
  padding:40px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
  text-align: center;
}

.topbar h1{
  margin:0;
  font-weight:900;
  letter-spacing:-.02em;
  font-size:clamp(24px, 3.5vw, 42px);
  line-height:1.15;
}
.topbar p{
  margin:12px auto 0;
  max-width:68ch;
  color:rgba(255,255,255,.92);
  font-size:16px;
}

.sec{ padding:40px 0 60px; }
.sec.soft{
  background:var(--soft);
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:40px;
}

.card h2{
  margin:0 0 15px;
  font-size:30px;
  font-weight:900;
  color: var(--green);
}
.card h3{
  margin:30px 0 10px;
  font-size:20px;
  font-weight:900;
  color: var(--green2);
  border-bottom: 2px solid var(--soft);
  padding-bottom: 5px;
}
.card p, .card li{
  color:#1b2b22;
  font-size:16.5px;
  line-height:1.75;
}
.card p{ margin:15px 0 0; }

.address-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

/* Contact Rows */
.kv{ display:grid; gap:12px; margin-top:20px; }
.kv .row{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:12px;
  padding:14px 18px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  background:#fcfdfc;
}
@media (max-width:700px){
  .kv .row{ grid-template-columns:1fr; }
}
.kv .k{ font-weight:900; color: var(--green2); }
.kv a{
  text-decoration:underline;
  text-underline-offset:3px;
  color:var(--green);
  font-weight:700;
}

/* Footer */
.footer{
  background:#1e1f22;
  color:#cfd6d1;
  padding:40px 0 30px;
  text-align: center;
}
.footer .wrap { max-width: 900px; }

.links{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  font-weight:700;
  margin-bottom:15px;
}
.links a{
  color:#ffffff;
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: opacity 0.2s;
}
.links a:hover { opacity: 0.8; }
.dot{ opacity:.5; }

.copy{
  text-align:center;
  font-size:13px;
  color:#aeb7b1;
}