:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #f0f0f0;
  --text-dark: #333333;
  --bg-dark-section: rgba(255, 255, 255, 0.05); /* Slightly lighter dark for sections */
  --bg-card: rgba(255, 255, 255, 0.1); /* Transparent white for cards */
  --border-color: rgba(255, 255, 255, 0.2);
}

/* Page base styles - Ensure text is light for dark body background */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Light text for dark background */
  background-color: transparent; /* Body background is handled by shared.css var(--dark-bg) */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #330000 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid var(--primary-color);
}

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

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Content Section */
.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: var(--bg-dark-section); /* Slightly lighter dark for contrast */
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

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

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-light);
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-privacy-policy__list li {
  margin-bottom: 8px;
  font-size: 1em;
}

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

.page-privacy-policy a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #ffffff;
  text-decoration: none;
}

.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);
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* CTA Button */
.page-privacy-policy__cta-wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark); /* Dark text on gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-privacy-policy__cta-button:hover {
  background: #FFC400; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-privacy-policy__hero-section {
    padding: 60px 0;
  }

  .page-privacy-policy__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__content-section {
    padding: 40px 0;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-privacy-policy p {
    font-size: 0.95em;
  }

  .page-privacy-policy__list {
    margin-left: 15px;
  }

  .page-privacy-policy__list li {
    font-size: 0.95em;
  }

  /* Image responsiveness for mobile */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset !important; /* Override min-width for mobile */
    min-height: unset !important; /* Override min-height for mobile */
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* CTA button responsiveness for mobile */
  .page-privacy-policy__cta-wrapper {
    margin-top: 40px;
    padding: 0 15px; /* Add padding to wrapper */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-privacy-policy__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
}