/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1, #0d0d0d); /* Inherit from shared or fallback */
}

.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;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 500px;
  overflow: hidden;
  background-color: #000080; /* Auxiliary brand color */
  color: #ffffff;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-privacy-policy__main-title {
  font-size: 2.8em;
  color: #FFD700; /* Main brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
}

/* General Section Styling */
.page-privacy-policy__content-section {
  padding: 60px 0;
}

.page-privacy-policy__section--light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-privacy-policy__section--dark-bg {
  background-color: #1a1a1a; /* Dark background for contrast */
  color: #f0f0f0;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
}

.page-privacy-policy__section--light-bg .page-privacy-policy__section-title {
  color: #000080; /* Auxiliary brand color on light background */
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #FFD700; /* Main brand color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__section--light-bg .page-privacy-policy__sub-title {
  color: #000080; /* Auxiliary brand color on light background */
}

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

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.page-privacy-policy__link {
  color: #FFD700; /* Main brand color for links */
  text-decoration: underline;
}

.page-privacy-policy__section--light-bg .page-privacy-policy__link {
  color: #000080; /* Auxiliary brand color for links on light background */
}

.page-privacy-policy__link:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* Image Block Styling */
.page-privacy-policy__image-block {
  margin: 40px auto;
  max-width: 800px; /* Constrain image width */
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  /* Ensure image original color is preserved */
  filter: none;
}