:root{
  --navy:#0b1b3b;
  --ink:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  border-top:14px solid var(--navy);
  border-left:14px solid var(--navy);
  border-right:14px solid var(--navy);
}

.wrapper{
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
  padding: 18px 0 24px;
}

/* Header */
.site-header{
  padding: 18px 0 0;
  text-align:center;
}
nav{
  margin: 6px auto 18px;
  border-top:1px solid #d1d5db;
  border-bottom:5px solid #d1d5db;
  padding: 5px 0 5px;
}
nav a{
  display:inline-block;
  padding:.45rem .8rem;
  margin:.1rem .15rem;
  text-decoration:none;
  color: var(--navy);
  font-weight:600;
  border-radius:10px;
  border:1px solid #d1d5db;
}
nav a:hover{
  background:#f1f5f9;
}

/* Layout */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:stretch;
}
.split img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}

/* Content */
h1,h2{ line-height:1.25; }
h1{ font-size: 2rem; margin:0 0 .5rem;}
h2{ font-size:1.4rem; margin:1.2rem 0 .4rem;}
.lead{ font-size:1.05rem; color:var(--muted) }

.card{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px;
  margin: 12px 0;
  background: #f9fafb;
  height:100%;
  display:flex;
  flex-direction:column;
}
ul.feature-list{ padding-left: 1.1rem; margin:.25rem 0;}
ul.feature-list li{ margin:.45rem 0; }

/* Footer */
.site-footer{
  margin-top:auto;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
}
.footer-content{
  display:flex;
  flex-wrap:wrap;
  gap:14px 22px;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
}
.footer-links a{
  text-decoration:none;
  color:var(--ink);
  margin-right:.9rem;
}
.address{ color:var(--muted); font-size:.95rem; }
.copyright{ color:#9ca3af; font-size:.9rem; }

.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;
  margin: 6px auto 8px;
}

.logo-left {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

.title-center {
  height: 80px;
  width: auto;
  max-width: 600px;
}