:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-light-card: rgba(255, 255, 255, 0.1);
  --border-color: #333;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from shared.css, but set for clarity */
  line-height: 1.6;
  padding-bottom: 60px; /* Space above footer */
}

/* Ensure main content has top padding to clear fixed header */
.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 140px 20px 80px; /* Adjusted padding-top for fixed header on desktop */
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(139, 0, 0, 0.35)), url('[GALLERY:bg:ok365 bet,privacy,security,abstract pattern,1920x1080]') center/cover no-repeat;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background-size: cover;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy__hero-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-privacy-policy__cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-button--bottom {
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
  background-color: var(--bg-dark);
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--bg-light-card);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__section-title:first-of-type {
    margin-top: 0;
}

.page-privacy-policy__subsection-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-light);
  opacity: 0.85;
}

.page-privacy-policy strong {
  color: var(--primary-color);
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: var(--text-light);
  opacity: 0.8;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__hero-section {
    padding-top: 120px;
  }
  .page-privacy-policy__container {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 100px 15px 60px; /* Mobile padding-top to clear fixed header */
    min-height: 300px;
  }
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
    line-height: 1.2;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-privacy-policy__content-section {
    padding: 40px 15px;
  }
  .page-privacy-policy__container {
    padding: 20px;
    border-radius: 5px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure content does not overflow */
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-privacy-policy p,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }
  .page-privacy-policy__list {
    padding-left: 15px;
  }
  .page-privacy-policy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }
  .page-privacy-policy__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.1em;
  }
}