.page-privacy-policy {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight color for title */
  line-height: 1.2;
}

.page-privacy-policy__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for main CTA */
  color: #000000; /* Black text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FCBC45;
}

.page-privacy-policy__register-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

.page-privacy-policy__article-container {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__article-heading {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-privacy-policy__sub-heading {
  font-size: 1.6em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__article p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-privacy-policy__article ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-privacy-policy__article ul li {
  margin-bottom: 8px;
}

.page-privacy-policy__article a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__article a:hover {
  text-decoration: underline;
}

.page-privacy-policy__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-privacy-policy__image-caption {
  font-style: italic;
  color: #666666;
  margin-top: 10px;
  font-size: 0.95em;
}

.page-privacy-policy__contact-info {
  margin-top: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-privacy-policy__last-updated {
  margin-top: 30px;
  font-style: italic;
  color: #777777;
  font-size: 0.9em;
}

.page-privacy-policy__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FCBC45;
}

.page-privacy-policy__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }

  .page-privacy-policy__intro-description {
    font-size: 1em;
  }

  .page-privacy-policy__register-button,
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }

  .page-privacy-policy__article-container {
    padding: 20px;
  }

  .page-privacy-policy__article-heading {
    font-size: 1.8em;
    margin-top: 30px;
  }

  .page-privacy-policy__sub-heading {
    font-size: 1.4em;
    margin-top: 25px;
  }

  .page-privacy-policy__article p,
  .page-privacy-policy__article ul li {
    font-size: 0.95em;
  }

  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__cta-description {
    font-size: 1em;
  }

  /* Mobile overflow prevention for images */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }

  .page-privacy-policy__content-image {
    min-width: 200px; /* Ensure images remain at least 200px wide for content */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__article-heading {
    font-size: 1.5em;
  }

  .page-privacy-policy__cta-title {
    font-size: 1.5em;
  }
}