:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --card:#f9fafb;
  --brand:#ef4444; /* red accent */
  --brand2:#111827;
  --link:#111827;
  --linkHover:#ef4444;
  --radius:16px;
  --shadow:0 12px 30px rgba(17,24,39,.08);
  --max:1100px;
  --pad:18px;
  --font: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:linear-gradient(180deg,#fff 0%, #fcfcff 55%, #fff 100%);
}

a{color:var(--link); text-decoration:none}
a:hover{color:var(--linkHover)}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:180px;
}
.logo{
  width:40px;
  height:40px;
  border-radius:12px;
  background:radial-gradient(circle at 30% 30%, #ff6b6b, #ef4444 55%, #b91c1c);
  box-shadow:0 10px 20px rgba(239,68,68,.25);
}
.brandText{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brandText strong{font-size:15px; letter-spacing:.2px}
.brandText span{font-size:12px; color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-size:13px;
  color:#111827;
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{background:#f3f4f6}

.cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:#111827;
  font-size:13px;
  cursor:pointer;
}
.btnPrimary{
  border-color:transparent;
  background:var(--brand);
  color:white;
  box-shadow:0 12px 26px rgba(239,68,68,.22);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

.menuBtn{
  display:none;
}

.mobilePanel{
  display:none;
  border-top:1px solid var(--border);
  padding:10px 0 14px;
}
.mobilePanel a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  font-size:14px;
}
.mobilePanel a:hover{background:#f3f4f6}

/* Page */
.pageHead{
  padding:28px 0 10px;
}
.breadcrumb{
  font-size:12px;
  color:var(--muted);
}
.h1{
  margin:10px 0 6px;
  font-size:34px;
  letter-spacing:-.4px;
}
.sub{
  margin:0;
  color:var(--muted);
  max-width:70ch;
  font-size:14px;
}

.content{
  padding:18px 0 40px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.card h2{
  margin:18px 0 8px;
  font-size:18px;
}
.card p, .card li{
  color:#374151;
  font-size:14px;
  line-height:1.75;
}
.card ul{padding-left:18px; margin:10px 0}
.note{
  margin-top:14px;
  padding:12px 14px;
  background:#fff;
  border:1px dashed #d1d5db;
  border-radius:14px;
  color:#374151;
  font-size:13px;
}

/* Footer (no boxes/cards style) */
.footer{
  border-top:1px solid var(--border);
  background:#fff;
  padding:26px 0;
}
.footGrid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:22px;
  padding:8px 0 18px;
}
.footBrand{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.footBrand .logo{width:38px;height:38px;border-radius:12px}
.footBrand strong{display:block;font-size:14px}
.footBrand p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
  max-width:42ch;
}
.footCol h4{
  margin:0 0 10px;
  font-size:13px;
  letter-spacing:.2px;
}
.footLinks{
  display:flex;
  flex-direction:column;
  gap:9px;
}
.footLinks a{
  color:#111827;
  font-size:13px;
}
.footLinks a:hover{color:var(--brand)}
.footBottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid var(--border);
  padding-top:14px;
  color:var(--muted);
  font-size:12px;
}
.mail{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#111827;
}
.dot{
  width:7px;height:7px;border-radius:99px;background:var(--brand);
  display:inline-block;
}

/* Responsive */
@media (max-width: 860px){
  .nav{display:none}
  .menuBtn{display:inline-flex}
  .mobilePanel.isOpen{display:block}
  .footGrid{grid-template-columns:1fr 1fr; }
}

@media (max-width: 520px){
  .h1{font-size:28px}
  .footGrid{grid-template-columns:1fr; }
  .footBottom{flex-direction:column; align-items:flex-start}
}
