:root {
  --brand: #0b4f8a;
  --brand-dark: #093d6a;
  --text: #222;
  --bg: #f9fafb;
}

* {margin:0;padding:0;box-sizing:border-box;font-family:sans-serif}
body {background:var(--bg);color:var(--text);line-height:1.6;padding-top:70px}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--brand);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  z-index: 1000;
}
.logo {display:flex;align-items:center;gap:8px;color:white;text-decoration:none;font-weight:bold}
.logo img {width:38px;height:38px;border-radius:6px}
.currency {display:flex;align-items:center;gap:6px}
.currency img {width:22px;height:16px}

/* Hero */
.hero {
  background: linear-gradient(135deg, #eaf4ff, #f0f7ff);
  text-align: center;
  padding: 70px 20px 50px;
}
.hero h1 {font-size:28px;color:var(--brand);margin-bottom:10px}
.hero p {color:#555}

/* Privacy Content */
.privacy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
.privacy-container h2 {
  color: var(--brand);
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 20px;
}
.privacy-container p, .privacy-container ul {
  margin-bottom: 16px;
  font-size: 15px;
}
.privacy-container ul {padding-left:20px;list-style:disc}

/* Footer */
.footer {
  background: var(--brand);
  color:white;
  text-align:center;
  padding:20px;
  margin-top:40px;
}

/* Responsive */
@media(max-width:768px){
  .hero h1 {font-size:22px}
  .privacy-container {padding:0 12px}
       }
