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

.page-privacy-policy__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff; /* White text for hero section */
  padding: 80px 20px; /* Adjusted padding for visual balance */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Minimum height for hero section */
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Darken image for text readability, not changing color */
}

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

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for highlight */
}

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

.page-privacy-policy__hero-button,
.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #007bff; /* Primary color for text */
  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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__hero-button:hover,
.page-privacy-policy__contact-button:hover {
  background-color: #e0a800; /* Darker shade on hover */
  transform: translateY(-2px);
}

.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; /* White background for sections */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #007bff; /* Primary color */
  margin-bottom: 15px;
  border-bottom: 2px solid #ffc107; /* Auxiliary color for emphasis */
  padding-bottom: 10px;
}

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

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

.page-privacy-policy__inline-link {
  color: #007bff; /* Primary color for inline links */
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__inline-link:hover {
  text-decoration: underline;
  color: #0056b3; /* Darker shade on hover */
}

.page-privacy-policy__contact-button {
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }

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

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

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

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

  /* Enforce image responsiveness and minimum size for content images */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px;
  }
}

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

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

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