/* style/privacy-policy.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000;
  --background-light: #f8f8f8;
  --border-color: #444444;
  --card-background-dark: rgba(255, 255, 255, 0.08);
  --card-background-light: #ffffff;
}

.page-privacy-policy {
  color: var(--text-light); /* Default to light text for dark body background */
  background-color: var(--background-dark); /* Body background from shared.css is #000000 */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Adjust for fixed header */
}

.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--background-dark) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--primary-color);
  padding-top: 120px; /* Adjust for fixed header */
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-privacy-policy__cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-privacy-policy__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  border-color: var(--primary-color);
}

.page-privacy-policy__cta-buttons--centered {
  margin-top: 40px;
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy__content-section.page-privacy-policy__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-privacy-policy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0.9;
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.05em;
  line-height: 1.8;
}

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

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

.page-privacy-policy__image--full-width {
  width: 100%;
  max-width: 1000px;
}

.page-privacy-policy__image--responsive {
  max-width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__image--wide {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__image--small-centered {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-section {
    padding: 60px 20px;
    padding-top: 100px; /* Adjust for fixed header on tablet */
  }
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__text-block, .page-privacy-policy__list {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 15px;
    line-height: 1.5;
    padding-top: 10px !important; /* Adjust for fixed header on mobile */
  }
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
  }
  .page-privacy-policy__hero-container,
  .page-privacy-policy__container,
  .page-privacy-policy__content-section,
  .page-privacy-policy__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-privacy-policy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    padding-left: 10px;
  }
  .page-privacy-policy__text-block, .page-privacy-policy__list {
    font-size: 0.95em;
  }
  .page-privacy-policy__image {
    margin: 20px auto;
    border-radius: 8px;
  }
  .page-privacy-policy__image--responsive {
    max-width: 100%;
  }
  .page-privacy-policy__image--small-centered {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__cta-button {
    font-size: 0.95em;
  }
}