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

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

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

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FCBC45; /* Login button color for emphasis */
}

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

.page-privacy-policy__hero-button,
.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__hero-button:hover,
.page-privacy-policy__contact-button:hover {
  background-color: #FFD700; /* Slightly lighter gold on hover */
}

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

.page-privacy-policy__section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #000000; /* Main color */
  margin-bottom: 15px;
  border-bottom: 2px solid #FCBC45; /* Accent line */
  padding-bottom: 10px;
}

.page-privacy-policy__section-text {
  font-size: 1em;
  margin-bottom: 15px;
  color: #333333;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: #333333;
}

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

.page-privacy-policy__link {
  color: #FCBC45; /* Login button color for links */
  text-decoration: none;
  font-weight: bold;
}

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

@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2.5em;
  }

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

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

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

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

  .page-privacy-policy__image,
  .page-privacy-policy__section-text img,
  .page-privacy-policy__list-item img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content area images are not smaller than 200px on all screens */
.page-privacy-policy img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    min-width: unset; /* Remove min-width for mobile to allow proper scaling if image is naturally smaller */
    min-height: unset; /* Remove min-height for mobile */
  }
  /* Re-apply minimum size for content images specifically if needed, but max-width: 100% is crucial */
  .page-privacy-policy__image {
    min-width: 200px; /* Ensure main content images remain at least 200px if possible */
    min-height: 200px;
  }
  /* Override for smaller images if they are used, but the overall rule is to avoid small icons */
  /* This is a general rule, specific smaller image classes would need to be handled carefully if they are allowed */
  /* Given the strict rule '禁止所有小图标', this should ideally not be an issue for content images. */
}