:root{
  --bg1: #f5f7fa; /* light page background inspired by original */
  --bg2: #e9eef6;
  --accent: #0072c6; /* corporate blue from old site */
  --muted: #6b7a89;
  --card: #ffffff;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,Arial,sans-serif;color:#e6eef8}
.site-header{display:flex;align-items:center;justify-content:space-between;padding:20px 40px;background:linear-gradient(180deg,#07263f,#093a57);}
.site-header .logo{height:44px;filter:drop-shadow(0 4px 14px rgba(2,6,23,0.45))}

body{
  background: linear-gradient(180deg,var(--bg1),var(--bg2));
  display:flex;flex-direction:column;min-height:100vh;
}
.site-header{display:flex;align-items:center;justify-content:space-between;padding:20px 40px;}
.lang button{background:transparent;border:1px solid rgba(7,38,63,0.08);color:var(--muted);padding:8px 12px;margin-left:8px;border-radius:6px;cursor:pointer}
.lang button.active{background:var(--accent);color:#fff;font-weight:700}

.hero{flex:1;display:flex;align-items:center;justify-content:center;padding:40px}
.card{background:var(--card);border-radius:12px;padding:32px;max-width:880px;display:flex;gap:28px;align-items:center;box-shadow:0 8px 30px rgba(7,38,63,0.06)}
.hero-img{width:180px;height:auto;filter:drop-shadow(0 6px 16px rgba(3,9,23,0.6))}
.card h1{font-size:32px;margin:0 0 8px;color:#07263f}
.card p{margin:6px 0;color:var(--muted)}
.subtle{font-size:14px}
.site-footer{padding:18px 40px;border-top:1px solid rgba(255,255,255,0.02);text-align:center;color:var(--muted)}

.footer-note{display:inline-flex;align-items:center;gap:10px;color:var(--muted)}
.small-logo{height:28px;display:inline-block}

@media(max-width:700px){
  .card{flex-direction:column;text-align:center}
  .hero-img{width:140px}
}
