/* style/privacy-policy.css */
.page-privacy-policy {
  color: #333333; /* Dark text for default 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;
  width: 100%;
  overflow: hidden;
  background-color: #007bff; /* Primary color background for hero */
  color: #ffffff; /* White text on blue background */
  padding: 0; /* Content padding handled by container */
}

.page-privacy-policy__hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative; /* For z-index if content overlays image */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.3; /* Subtle background image */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.page-privacy-policy__article {
  margin-bottom: 40px;
}

.page-privacy-policy__article-heading {
  font-size: 2em;
  color: #007bff; /* Primary color for headings */
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffc107; /* Auxiliary color for accent */
  padding-bottom: 10px;
}

.page-privacy-policy__article-paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

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

.page-privacy-policy__list-item-strong {
  color: #007bff;
}

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

.page-privacy-policy__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
  object-fit: cover;
}

.page-privacy-policy__text-link {
  color: #007bff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__text-link:hover {
  color: #0056b3;
}

.page-privacy-policy__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.page-privacy-policy__cta-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333333;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

  .page-privacy-policy__hero-container {
    padding: 40px 15px;
  }

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

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

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

  /* Ensure content images are responsive and do not overflow */
  .page-privacy-policy__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    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__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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