:root {
  /* ✅ Use DARK theme to match your site */
  --bg: #121212;          /* Page background */
  --card-bg: #1e1e1e;     /* Card background */
  --text: #ffffff;        /* Primary text */
  --text-secondary: #cccccc;
  --accent: #ffffff;      /* Yellow (for links/headings) */
  --border: #333;

  /* ✅ Define missing navbar variables */
  --primary: #000000;     /* Navbar background */
  --secondary: #fafafa;   /* Navbar text & logo */

  --nav-height: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--nav-height); /* Prevent content under navbar */
}

/* ========== STICKY NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.logo a {
  text-decoration: none;
  color: inherit;
}

/* Hide mobile menu toggle (not needed for privacy policy) */
#menu-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff; /* Brighter yellow on hover */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* ========== PRIVACY POLICY CARD ========== */
.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.policy-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--text);
}

.last-updated {
  color: var(--text-secondary);
  font-size: 14px;
}

h2 {
  font-size: 24px;
  margin: 30px 0 16px;
  color: var(--accent);
}

p, ul {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: underline;
}

a:hover {
  color: #ffffff;
}