.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 space for fixed header */
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header height */
  }
}

.page-privacy-policy__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
}

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__hero-image {
    margin-top: 20px;
  }
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #000000; /* Dark text for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FCBC45; /* Highlight with login color */
  padding-bottom: 10px;
  font-weight: bold;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #000000; /* Dark text for sub-titles */
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  color: #333333;
}

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

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

.page-privacy-policy__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px; /* Ensure images are not too wide */
  min-width: 200px; /* Minimum size requirement */
}

@media (max-width: 768px) {
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__image-content {
    max-width: 100%; /* Responsive image for mobile */
    height: auto;
  }
}

.page-privacy-policy__contact-buttons {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-privacy-policy__button--contact {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-privacy-policy__button--contact:hover {
  background-color: #333333;
  color: #FCBC45;
}

.page-privacy-policy__cta-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 50px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 60px;
}

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

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

.page-privacy-policy__button--register {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-privacy-policy__button--register:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

/* Global image size constraint for content area */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  box-sizing: border-box;
}

/* Specific rules to ensure content images are not too small */
.page-privacy-policy__content-area img {
  width: auto; /* Allow natural width */
  height: auto; /* Allow natural height */
  max-width: 100%;
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px;
  }
  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }
}