/* style/privacy-policy.css */

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

.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 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;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.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%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: block; /* Ensure no extra space below image */
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-privacy-policy__button--primary {
  background-color: #ffc107;
  color: #000000;
  border: 2px solid #ffc107;
}

.page-privacy-policy__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-privacy-policy__button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-3px);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: -40px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.page-privacy-policy__section:last-child {
  border-bottom: none;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 15px;
  border-left: 5px solid #ffc107;
  padding-left: 10px;
}

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

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

.page-privacy-policy__list-item {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-privacy-policy__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

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

.page-privacy-policy__cta-bottom {
  background-color: #e9f5ff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #007bff;
}

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

.page-privacy-policy__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

/* 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__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__button {
    width: 100%;
    padding: 12px 20px;
  }

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

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

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

  .page-privacy-policy__cta-bottom {
    padding: 30px 15px;
  }

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

  .page-privacy-policy__section-image,
  .page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    /* Enforce mobile image resizing */
    width: 100% !important;
    max-width: 100% !important;
  }
}

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

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

/* Ensure no image filters are used */
.page-privacy-policy img {
  filter: none; /* Explicitly disable any potential filters */
}