:root{
  --bg:#031b38;
  --bg2:#06244a;
  --card:#0b2a4a;
  --gold:#eeb965;
  --text:#eaf0f6;
  --muted:#b9c6d3;
  --border:rgba(238,185,101,.28);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 700px at 20% 10%, var(--bg2) 0%, var(--bg) 55%, #020b14 100%);
  color:var(--text);
  line-height:1.55;
}
header{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(2,11,20,.55);
  border-bottom:1px solid rgba(255,255,255,.07);
  z-index:10;
}
.bar{
  max-width:1100px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:16px;
  min-width: 260px;
}
/* Logo: bigger, clean, matching the brand */
.brand img{
  width:190px;
  height:190px;
  border-radius:16px;
  object-fit:cover;
  box-shadow:0 18px 60px rgba(0,0,0,.45);
  border:1px solid rgba(238,185,101,.22);
  background: rgba(0,0,0,.12);
}
.brand .t1{font-weight:850; font-size:18px; letter-spacing:.02em}
.brand .t2{color:var(--muted); font-size:14px; margin-top:2px}

/* LANGUAGE SELECTOR - very visible */
.lang-wrap{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:14px;
  background: rgba(11,42,74,.62);
  box-shadow:0 12px 40px rgba(0,0,0,.28);
}
.lang-label{color:rgba(233,240,246,.72); font-size:12px; letter-spacing:.10em; text-transform:uppercase}
select{
  appearance:none;
  border:none;
  outline:none;
  background: transparent;
  color: var(--text);
  font-weight:900;
  font-size:16px;
  padding:6px 34px 6px 10px;
  cursor:pointer;
}
.chev{
  width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;
  border-top:8px solid var(--gold);
  margin-left:-26px;
  pointer-events:none;
}

main{max-width:1100px; margin:0 auto; padding:24px 18px 60px}
.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  margin-top:18px;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  .brand{min-width:unset}
  .brand img{ width:140px; height:140px; }
}
.card{
  background: rgba(11,42,74,.72);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 50px rgba(0,0,0,.30);
}
h1{margin:0 0 10px; font-size:28px}
h2{margin:22px 0 10px; font-size:20px}
h3{margin:16px 0 8px; font-size:16px; color:var(--gold)}
p{margin:10px 0; color:var(--text)}
ul{margin:10px 0 10px 18px; color:var(--text)}
li{margin:6px 0}
.muted{color:var(--muted)}
.tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(238,185,101,.12);
  border:1px solid rgba(238,185,101,.25);
  color:var(--gold);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
@media (max-width: 700px){ .contact-grid{grid-template-columns:1fr} }
a{color:var(--gold); text-decoration:none}
a:hover{text-decoration:underline}
footer{
  max-width:1100px; margin:0 auto; padding:18px;
  color:rgba(233,240,246,.72);
  border-top:1px solid rgba(255,255,255,.08);
}
