/* Premium privacy policy page styling */
/* Font: Inter from Google Fonts */

:root {
  --primary-h: 210; /* hue for blue gradient */
  --primary-s: 60%;
  --primary-l: 55%;
  --bg-gradient: linear-gradient(135deg, hsl(var(--primary-h), var(--primary-s), 70%), hsl(var(--primary-h), var(--primary-s), 40%));
  --text-color: #f5f5f5;
  --card-bg: rgba(255, 255, 255, 0.12);
  --card-blur: 12px;
}

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero header */
header.hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  backdrop-filter: blur(8px);
  background: var(--card-bg);
  border-radius: 0 0 1rem 1rem;
  margin-bottom: 2rem;
}

header.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

header.hero .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Content sections */
main.content {
  flex: 1;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

section.section {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1.5rem 1.8rem;
  backdrop-filter: blur(var(--card-blur));
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section.section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

section.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #e0eaff;
}

section.section p, section.section li {
  font-size: 1rem;
  opacity: 0.95;
}

section.section ul {
  list-style: disc inside;
  margin-left: 1rem;
}

/* Footer */
footer.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  header.hero h1 {font-size: 2rem;}
  header.hero .subtitle {font-size: 1rem;}
  section.section h2 {font-size: 1.4rem;}
}

/* Premium Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e0eaff;
}
.nav-link {
  color: #e0eaff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.nav-link:hover {
  opacity: 0.8;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: hsl(var(--primary-h), var(--primary-s), 45%);
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.cta-button:hover {
  background: hsl(var(--primary-h), var(--primary-s), 55%);
  transform: translateY(-2px);
}

/* Hero Background Image */
header.hero {
  position: relative;
  overflow: hidden;
}
header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522199710521-72d69614c702?auto=format&fit=crop&w=1200&q=80') center/cover;
  opacity: 0.2;
  z-index: -1;
}

/* Fade-in animation (moved to CSS) */
.fade-in {opacity:0;transform:translateY(20px);animation:fadeIn 0.8s forwards;animation-delay:0.2s;}
@keyframes fadeIn {to {opacity:1;transform:none;}}
