:root {
  --navy:#133a73;
  --navy2:#0e2f63;
  --gold:#f1bd00;
  --bg:#0b2348;
  --text:#ffffff;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#184a90,#0e2f63);
  color:var(--text);
}
header.nav{
  background:var(--navy);
  border-bottom:4px solid var(--gold);
}
.container{
  width:min(1100px,92%);
  margin:0 auto;
}
.header-row{
  padding:12px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand img{
  width:44px;
  height:44px;
  border-radius:50%;
}
.welcome{
  font-weight:700;
  font-size:16px;
}
.welcome .tagline{
  display:block;
  font-weight:400;
  font-size:12px;
  opacity:.95;
  margin-top:2px;
}
nav a{
  color:#fff;
  text-decoration:none;
  padding:10px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.30);
  margin-left:10px;
  font-size:15px;
  font-weight:600;
}
nav a:hover{
  background:rgba(255,255,255,0.18);
}
.page.container,
main{
  max-width:800px;
  margin:40px auto;
  padding:2rem 1.5rem 3rem;
  background:rgba(5,12,30,0.78);
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,0.55);
}
h1{
  margin-bottom:1rem;
  font-size:2rem;
}
p{
  line-height:1.6;
  font-size:0.98rem;
}
footer{
  padding:16px 0 24px;
  text-align:center;
  font-size:0.85rem;
  background:rgba(4,10,26,0.95);
}
.fdacs-disclaimer{
  margin-top:2rem;
  font-size:0.8rem;
  line-height:1.4;
}

/* Contact page buttons */
.contact-buttons{
  margin-top:1.5rem;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.contact-btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:#f5c400;
  color:#041021;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(0,0,0,0.28);
}

.contact-btn:hover{
  background:#ffd84d;
}
