/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text on dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-privacy-policy__hero-section {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

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

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

.page-privacy-policy__hero-image-wrapper {
  margin-top: 40px;
}

.page-privacy-policy__hero-image,
.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__content-area {
  padding: 40px 20px;
  background-color: #ffffff; /* White background for content section */
  color: #333333; /* Dark text on white background */
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #26A9E0; /* Primary brand color for titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.5em;
  color: #000000; /* Black for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.7;
  color: #333333;
}

.page-privacy-policy__contact-link {
  color: #26A9E0; /* Primary brand color for links */
  text-decoration: underline;
}

.page-privacy-policy__contact-link:hover {
  color: #1a7bb0; /* Slightly darker shade on hover */
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }

  .page-privacy-policy__hero-title {
    font-size: 2em;
  }

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

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

  .page-privacy-policy__sub-section-title {
    font-size: 1.2em;
  }

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__container,
  .page-privacy-policy__content-area,
  .page-privacy-policy__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}

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