.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f9fa; /* Light background for the page content */
}

.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, #007bff, #ffc107); /* Brand colors */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.page-privacy-policy__description {
  font-size: 1.3em;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-top: -60px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
}

.page-privacy-policy__container {
  padding: 20px 0;
}

.page-privacy-policy__article h2 {
  font-size: 2.2em;
  color: #007bff; /* Primary brand color for main titles */
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffc107; /* Secondary brand color for accent */
  font-weight: 600;
}

.page-privacy-policy__article h3 {
  font-size: 1.6em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

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

.page-privacy-policy__article ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-privacy-policy__article a {
  color: #007bff; /* Primary brand color for links */
  text-decoration: none;
  font-weight: 500;
}

.page-privacy-policy__article a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 30px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__description {
    font-size: 1.2em;
  }
  .page-privacy-policy__article h2 {
    font-size: 2em;
  }
  .page-privacy-policy__article h3 {
    font-size: 1.5em;
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile specific offset */
  }
  .page-privacy-policy__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-privacy-policy__description {
    font-size: 1em;
  }
  .page-privacy-policy__content-area {
    padding: 20px 10px;
    margin-top: -30px;
    border-radius: 0;
    box-shadow: none;
  }
  .page-privacy-policy__article h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__article h3 {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .page-privacy-policy__article p,
  .page-privacy-policy__article ul li {
    font-size: 1em;
  }
  
  /* Mobile image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__article h2 {
    font-size: 1.6em;
  }
  .page-privacy-policy__article h3 {
    font-size: 1.2em;
  }
  .page-privacy-policy__article ul {
    margin-left: 20px;
  }
}