/* =========================================================
   Wonder Geoservices — Privacy Policy Page Styles
   File: css/privacy.css
   ========================================================= */

.privacy-page section { padding: 0; }

/* ─── HEADER ─── */
.pp-header {
  background: var(--deep);
  border-bottom: 1px solid rgba(0,180,216,.18);
}
.pp-header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 48px 32px;
  display: flex;
  align-items: center;
  gap: 36px;
}

/* logo-nav.svg (logo-03) is wide ~3:1, so constrain width */
.pp-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: filter .2s, opacity .2s;
}
.pp-logo-link:hover { opacity: .8; }
.pp-logo-link img {
  /* logo-03 is 3:1 wide → at 52px height = ~155px wide */
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  /* White silhouette on dark header background */
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0,180,216,.2));
}

.pp-header h1 {
  font-family: 'GothamNarrow', 'Gotham', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin: 0;
  /* visual separator between logo and title */
  padding-left: 36px;
  border-left: 2px solid rgba(0,180,216,.35);
}

/* ─── MAIN ─── */
.pp-main {
  background: #0d1524;
  min-height: calc(100vh - 260px);
  padding: 56px 0 80px;
}
.pp-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}

.pp-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.pp-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 48px;
}

/* ─── SECTIONS ─── */
.pp-section { margin-bottom: 44px; }

.pp-section h2 {
  font-family: 'GothamNarrow', 'Gotham', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--aqua);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,180,216,.15);
}

.pp-section p {
  font-size: 15px;
  line-height: 1.85;
  color: #a8bfd0;
  margin-bottom: 14px;
}
.pp-section p:last-child { margin-bottom: 0; }

.pp-section ul { margin: 8px 0 14px; }
.pp-section ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #a8bfd0;
  padding: 4px 0 4px 20px;
  position: relative;
}
.pp-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-size: 12px;
  top: 6px;
}

.pp-section a {
  color: var(--aqua);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,180,216,.3);
  transition: color .2s, border-color .2s;
}
.pp-section a:hover { color: #00d4f8; border-color: #00d4f8; }
.pp-section strong  { color: var(--white); }

/* ─── BACK BUTTON ─── */
.pp-back {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .pp-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
  .pp-header h1 {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid rgba(0,180,216,.35);
    padding-top: 16px;
  }
  .pp-container { padding: 0 24px; }
}