.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8; /* Light background to ensure contrast */
  padding-top: 0; /* Assumes shared.css handles body padding-top */
}

.page-privacy-policy__hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A2E36, #1A4E56);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0; /* Shared.css is assumed to set body padding-top */
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  padding: 40px 20px;
}

.page-privacy-policy__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for prominence */
  line-height: 1.2;
  font-weight: 700;
}

.page-privacy-policy__hero-description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

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

.page-privacy-policy__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.page-privacy-policy__section-title {
  font-size: 32px;
  color: #0A2E36;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333333;
}

.page-privacy-policy__highlight {
  color: #0A2E36;
  font-weight: bold;
}

.page-privacy-policy__list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-privacy-policy__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #0A2E36;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__list-title {
  font-size: 20px;
  color: #0A2E36;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-privacy-policy__list-item p {
  font-size: 15px;
  margin-bottom: 0;
  color: #555555;
}

.page-privacy-policy__link {
  color: #0A2E36;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #FFD700;
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__final-note {
  font-style: italic;
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px dashed #e0e0e0;
}

/* FAQ styles */
.page-privacy-policy__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2E36;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-privacy-policy__faq-question:hover {
  background: #1A4E56;
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-privacy-policy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background-color: #f0f0f0;
  color: #333333;
  border-radius: 0 0 5px 5px;
}

.page-privacy-policy__faq-answer p {
  margin: 0;
  padding: 0;
  font-size: 15px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 40px;
  }

  .page-privacy-policy__hero-description {
    font-size: 16px;
  }

  .page-privacy-policy__section-title {
    font-size: 28px;
  }

  .page-privacy-policy__list-title {
    font-size: 18px;
  }

  .page-privacy-policy__faq-question h3 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 0 !important; /* Fixed header spacing - ensures no double padding if shared.css sets body padding */
  }

  .page-privacy-policy__hero-section {
    padding: 60px 15px;
    padding-top: 0 !important; /* Ensure 0 padding top for hero on mobile if shared.css handles body padding */
  }

  .page-privacy-policy__hero-content {
    padding: 30px 15px;
  }

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

  .page-privacy-policy__hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__paragraph {
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-privacy-policy__list-title {
    font-size: 16px;
  }

  .page-privacy-policy__list-item p {
    font-size: 14px;
  }

  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Mobile */
  .page-privacy-policy__faq-list {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-privacy-policy__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
    color: #FFD700 !important;
  }
  
  .page-privacy-policy__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
    color: #FFD700 !important;
  }
  
  .page-privacy-policy__faq-answer {
    padding: 0 15px;
  }
  
  .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    padding: 15px !important;
  }

  .page-privacy-policy__final-note {
    margin-top: 30px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Generic image and container responsiveness for mobile */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__list-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* No buttons on this page, but including general button responsiveness as per requirements */
  .page-privacy-policy__cta-button,
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-privacy-policy__cta-buttons,
  .page-privacy-policy__button-group,
  .page-privacy-policy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}