:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Black */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-1: #0d0d0d; /* Assuming shared.css uses a dark background for body */
  --bg-dark-2: #1a1a1a;
  --bg-light-1: #f8f9fa;
  --bg-light-2: #ffffff;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.3);
}

.page-privacy-policy {
  background-color: var(--bg-dark-1); /* Inherit from body or set a dark background */
  color: var(--text-light); /* Light text on dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  overflow-x: hidden;
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy__hero-section {
  text-align: center;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a0a 100%);
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__main-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px var(--shadow-dark);
  font-weight: bold;
}

.page-privacy-policy__intro-text {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.85);
}

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}