/* Dark theme corporate styles - responsive and justified text */
:root{
  --bg:#0d0d0d;
  --panel:#111;
  --muted:#bfc7cf;
  --accent:#7cb8ff;
  --maxwidth:980px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:var(--bg);
  color:#e8eef2;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
}
/* nav */
.navtop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 22px;
  background:var(--panel);
  border-bottom:1px solid #0f0f10;
  gap:12px;
  flex-wrap:wrap;
}
.nav-left{display:flex;align-items:center;gap:12px}
.nav-logo{width:40px;height:auto}
.nav-title{font-weight:700;font-size:0.95rem;line-height:1rem}
.nav-right{display:flex;gap:18px;align-items:center}
.nav-right a{color:var(--accent);text-decoration:none;font-weight:600}
.nowrap{white-space:nowrap}

/* hero */
.hero{position:relative;overflow:hidden}
.hero-img{width:100%;display:block;opacity:0.78}
.hero-text{position:absolute;top:36%;left:0;right:0;text-align:center;padding:0 18px}
.hero-text h1{font-size:2.4rem;margin:0 0 6px}
.subtitle{color:var(--muted);margin:0;font-size:1.05rem}

/* container */
.container{max-width:var(--maxwidth);margin:30px auto;padding:20px}
.lead{font-size:1.05rem;color:#dfe7eb;text-align:justify}
h2{font-size:1.25rem;color:#fff;margin-top:28px;border-bottom:1px solid #1f1f1f;padding-bottom:8px}
.txt{margin-top:14px;color:#d7dfe6;text-align:justify}
.bullets{margin-top:8px;padding-left:20px}
.bullets li{margin:8px 0}

/* contact */
.contact-details address{font-style:normal;line-height:1.6;color:var(--muted)}

/* footer */
footer{margin-top:36px;text-align:center;color:#9aa3ad;padding:18px 0}

/* cookie */
.cookie-banner{position:fixed;left:16px;right:16px;bottom:16px;background:#111;border-radius:10px;padding:12px;box-shadow:0 6px 20px rgba(0,0,0,0.6);z-index:999}
.cookie-inner{display:flex;gap:12px;align-items:center;justify-content:space-between;color:#ccd4da}
.btn{background:#222;color:var(--muted);border:1px solid #2a2a2a;padding:8px 12px;border-radius:6px;cursor:pointer}

/* responsive */
@media (max-width:700px){
  .hero-text h1{font-size:1.6rem}
  .nav-title{font-size:0.9rem}
  .nav-right{gap:10px}
  .container{margin:20px auto;padding:18px}
  .cookie-inner{flex-direction:column;align-items:center;gap:10px}
}

/* accessibility focus */
a:focus,button:focus{outline:2px solid rgba(124,184,255,0.4);outline-offset:2px}
