/* style/privacy-policy.css */

/* Variables and base styles (ensure contrast) */
:root {
  --primary-color: #007bff; /* Blue */
  --secondary-color: #ffc107; /* Gold */
  --dark-background: #121212;
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --card-background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  --border-color: rgba(255, 255, 255, 0.15);
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--light-text-color); /* Main text color for dark body background */
  background-color: var(--dark-background); /* Inherited from body, but good to be explicit */
  line-height: 1.6;
  padding-top: 120px; /* Spacing for fixed header on desktop */
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(255, 193, 7, 0.8));
  color: #ffffff;
  overflow: hidden;
  border-bottom: 2px solid var(--secondary-color);
}

.page-privacy-policy__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-privacy-policy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.2;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%); /* Example of non-color-changing filter for background */
  transform: scale(1.1);
}

/* CTA Button - General */
.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--dark-text-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button is responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: var(--dark-background);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-privacy-policy__subsection-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: var(--light-text-color);
}

.page-privacy-policy strong {
  color: var(--secondary-color);
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--light-text-color);
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  color: var(--light-text-color);
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__contact-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--light-text-color);
}

.page-privacy-policy__contact-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Final CTA Section */
.page-privacy-policy__cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, var(--primary-color), #0056b3);
  text-align: center;
  color: #ffffff;
  border-top: 2px solid var(--secondary-color);
}

.page-privacy-policy__cta-container {
  max-width: 900px;
}

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

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

.page-privacy-policy__cta-button--large {
  padding: 18px 50px;
  font-size: 1.25em;
  background: var(--secondary-color);
  color: var(--dark-text-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--large:hover {
  background: #ffdb58; /* Slightly lighter gold */
  color: var(--dark-text-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 3em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1.15em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__cta-title {
    font-size: 2.4em;
  }
  .page-privacy-policy__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: 100px !important; /* Spacing for fixed header on mobile */
    font-size: 15px;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-privacy-policy__hero-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }

  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__content-section {
    padding: 40px 0;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
    padding-bottom: 10px;
  }

  .page-privacy-policy__subsection-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 10px;
  }

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

  .page-privacy-policy__image {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__cta-section {
    padding: 50px 15px;
  }

  .page-privacy-policy__cta-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-privacy-policy__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-privacy-policy__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__cta-description {
    font-size: 0.9em;
  }
}