/* 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 space for fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #1A202C; /* Main brand dark color */
  color: #f4f4f4; /* Light text on dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

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

.page-privacy-policy__main-heading {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for main heading */
  font-weight: bold;
}

.page-privacy-policy__sub-heading {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f4f4f4;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA button */
  color: #1A202C; /* Dark text on accent background */
  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;
  border: none;
  cursor: pointer;
}

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

.page-privacy-policy__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

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

.page-privacy-policy__section {
  margin-bottom: 50px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

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

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

.page-privacy-policy__list-item strong {
  color: #1A202C;
}

.page-privacy-policy__image-container {
  text-align: center;
  margin: 30px 0;
}

.page-privacy-policy__image-container--inline {
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-privacy-policy__section-text a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__section-text a:hover {
  color: #e6c200;
}

.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #1A202C;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__contact-button:hover {
  background-color: #0d121b;
  transform: translateY(-2px);
}

.page-privacy-policy__final-cta {
  text-align: center;
  background-color: #1A202C;
  color: #f4f4f4;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: 60px;
}

.page-privacy-policy__final-cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-privacy-policy__final-cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin-right: 15px;
}

.page-privacy-policy__cta-button--secondary {
  background-color: #333333;
  color: #f4f4f4;
}

.page-privacy-policy__cta-button--secondary:hover {
  background-color: #555555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

  .page-privacy-policy__main-heading {
    font-size: 2em;
  }

  .page-privacy-policy__sub-heading {
    font-size: 1em;
  }

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

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

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

  .page-privacy-policy__cta-button {
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0; /* Remove right margin for full width buttons */
  }

  .page-privacy-policy__cta-button--large {
    margin-right: 0;
  }

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content images are responsive and not too small */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size for mobile */
    min-height: 200px; /* Ensure min size for mobile */
  }
}