/* style/privacy-policy.css */
.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background #111 */
  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;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.8), rgba(255, 215, 0, 0.8)); /* Blend of auxiliary and primary colors */
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Primary color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-privacy-policy__button--primary {
  background-color: #DC143C; /* Action button color */
  color: #ffffff;
  border: 2px solid #DC143C;
}

.page-privacy-policy__button--primary:hover {
  background-color: #b30f31;
  transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Primary color for secondary button text */
  border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

.page-privacy-policy__article {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark background */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__article-heading {
  font-size: 2em;
  color: #FFD700; /* Primary color for headings */
  margin-bottom: 20px;
  border-bottom: 2px solid #1E90FF; /* Auxiliary color for underline */
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-privacy-policy__link {
  color: #1E90FF; /* Auxiliary color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #62b1ff;
  text-decoration: underline;
}

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

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

.page-privacy-policy__contact-info {
  font-size: 1.1em;
  margin-top: 20px;
  color: #e0e0e0;
}

.page-privacy-policy__button--contact {
  background-color: #1E90FF;
  color: #ffffff;
  border: 2px solid #1E90FF;
  padding: 10px 20px;
  font-size: 1em;
}

.page-privacy-policy__button--contact:hover {
  background-color: #1565b3;
}

.page-privacy-policy__image {
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  max-width: 100%; /* Ensure images are responsive */
  height: auto; /* Maintain aspect ratio */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__call-to-action {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 215, 0, 0.1); /* Light transparent gold background */
  border-top: 2px solid #FFD700;
  margin-top: 40px;
}

.page-privacy-policy__cta-heading {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }

  .page-privacy-policy__intro-description,
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-info,
  .page-privacy-policy__cta-text {
    font-size: 1em;
  }

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

  .page-privacy-policy__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-privacy-policy__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size is maintained */
    min-height: 200px; /* Ensure minimum size is maintained */
  }
  /* Ensure no horizontal scroll */
  .page-privacy-policy,
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area,
  .page-privacy-policy__call-to-action {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
  }

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

  .page-privacy-policy__article {
    padding: 20px;
  }

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