/* style/privacy-policy.css */
.page-privacy-policy {
  color: #ffffff; /* Light text on dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding: 40px 20px;
}

.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 slightly for text readability */
}

.page-privacy-policy__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold brand color for title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-privacy-policy__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold button */
  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;
  min-width: 200px; /* Ensure button is large enough */
  min-height: 50px;
  line-height: 20px;
  text-align: center;
}

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

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A1A1A; /* Auxiliary dark background for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__article-heading {
  color: #FFD700; /* Gold for headings */
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

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

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

.page-privacy-policy__image {
  width: 100%;
  max-width: 800px; /* Constrain image width within content area */
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-privacy-policy__article a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__article a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-privacy-policy__contact-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-privacy-policy__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 180px;
  min-height: 45px;
  line-height: 20px;
  text-align: center;
}

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

.page-privacy-policy__cta-section {
  background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-privacy-policy__cta-content {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-privacy-policy__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-privacy-policy__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  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;
  min-width: 250px;
  min-height: 60px;
  line-height: 24px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__article-heading {
    font-size: 2em;
  }
  .page-privacy-policy__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }
  .page-privacy-policy__hero-content {
    padding: 25px;
  }
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__hero-button, .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    min-height: unset;
  }
  .page-privacy-policy__content-area {
    padding: 40px 15px;
  }
  .page-privacy-policy__article-heading {
    font-size: 1.8em;
  }
  .page-privacy-policy__article-paragraph, .page-privacy-policy__list-item {
    font-size: 0.95em;
  }
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }
  .page-privacy-policy__cta-title {
    font-size: 2em;
  }
  .page-privacy-policy__cta-description {
    font-size: 1.1em;
  }
  /* Ensure images in content area are responsive and not smaller than 200px */
  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    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__article-heading {
    font-size: 1.5em;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
}