/* style/privacy-policy.css */
.page-privacy-policy {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  padding-top: var(--header-offset, 120px);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 400px; /* Ensures hero section has content even before image loads */
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4); /* Darken image for text readability, not changing color */
}

.page-privacy-policy__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text readability */
  border-radius: 8px;
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary color for main 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__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible container on dark background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #FFD700; /* Auxiliary color for section titles */
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-privacy-policy__link:hover {
  color: #DC143C; /* Accent color on hover */
  text-decoration: underline;
}

.page-privacy-policy__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  max-width: 800px; /* Max width for content images */
  min-width: 200px; /* Minimum display width */
  min-height: 200px; /* Minimum display height */
}

.page-privacy-policy__call-to-action {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__button {
  display: inline-block;
  background-color: #DC143C; /* Accent color for buttons */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__button:hover {
  background-color: #FFD700; /* Auxiliary color on hover */
  color: #000000; /* Dark text on light button hover */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__main-title {
    font-size: 2em;
  }

  .page-privacy-policy__hero-description,
  .page-privacy-policy__paragraph {
    font-size: 0.95em;
  }

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

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

  .page-privacy-policy__image-inline {
    max-width: 100%;
    height: auto;
  }
  
  .page-privacy-policy {
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  }
}

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

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

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

  .page-privacy-policy__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}