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

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A202C;
  padding-bottom: 40px; /* Adjust as needed for content placement */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  border-radius: 8px;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.page-privacy-policy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  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(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1A202C; /* Dark background for content sections */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: #cccccc;
}

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

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

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

.page-privacy-policy__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Ensure content images are not too small */
  min-height: 200px;
}

.page-privacy-policy__image-caption {
  color: #999999;
  font-size: 0.9em;
  margin-top: 10px;
}

.page-privacy-policy__action-area {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-privacy-policy__action-text {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__cta-button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-privacy-policy__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__hero-content {
    width: 95%;
    padding: 15px;
  }

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

  .page-privacy-policy__hero-description {
    font-size: 1em;
  }

  .page-privacy-policy__cta-button {
    padding: 10px 20px;
  }

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

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

  .page-privacy-policy__list {
    margin-left: 20px;
  }

  .page-privacy-policy__action-text {
    font-size: 1.2em;
  }

  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure content images are not too small on mobile */
    min-height: 200px;
  }
}

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

  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }

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

  .page-privacy-policy__list {
    margin-left: 15px;
  }
}