.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body is #000000, so this section background is transparent */
}

.page-privacy-policy__hero-banner {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for desktop banner */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0; /* Assumed shared.css handles body padding-top */
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-privacy-policy__hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FF0000; /* Brand red for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  color: #f0f0f0; /* Light grey for intro text */
  margin-bottom: 0;
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
}

.page-privacy-policy__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark background for content sections */
  color: #ffffff;
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #FF0000; /* Brand red for section titles */
  margin-top: 50px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 0, 0, 0.5);
  padding-bottom: 10px;
}

.page-privacy-policy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light grey for paragraph text */
}

.page-privacy-policy__info-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-privacy-policy__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white card background */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-privacy-policy__card-title {
  font-size: 1.5em;
  color: #FF0000; /* Brand red for card titles */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-privacy-policy__card ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #f0f0f0;
}

.page-privacy-policy__card li {
  margin-bottom: 8px;
}

.page-privacy-policy__list-items {
  list-style: disc;
  margin-left: 25px;
  padding-left: 0;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy__list-items li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-privacy-policy__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-privacy-policy__button-group {
  margin-top: 40px;
  text-align: center;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background-color: #FF0000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
}

.page-privacy-policy__btn-primary:hover {
  background-color: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.6);
}

.page-privacy-policy__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-privacy-policy__hero-banner {
    height: 400px; /* Adjust height for mobile */
    padding-top: 0 !important; /* Ensure no double padding from shared header */
  }

  .page-privacy-policy__hero-overlay {
    padding: 25px;
    max-width: 90%;
  }

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

  .page-privacy-policy__intro-text {
    font-size: 1em;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__text-block,
  .page-privacy-policy__card p,
  .page-privacy-policy__list-items li,
  .page-privacy-policy__contact-list li {
    font-size: 1em;
  }

  .page-privacy-policy__info-collection-grid,
  .page-privacy-policy__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-privacy-policy__card-title {
    font-size: 1.3em;
  }

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

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

  .page-privacy-policy__image-wrapper {
    margin: 30px auto;
  }

  /* Mobile image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Mobile button responsiveness */
  .page-privacy-policy__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-privacy-policy__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 30px;
  }
}