.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--deep-navy); /* Body background from shared.css */
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  overflow: hidden;
  background-color: var(--deep-navy);
}

.page-privacy-policy__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-privacy-policy__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(16, 35, 63, 0.7); /* Card BG with opacity */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: -80px; /* Overlap image slightly */
}

.page-privacy-policy__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gold); /* Gold color for main title */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__description {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary); /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
  background-color: var(--deep-navy);
  color: var(--text-main);
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  background-color: var(--card-bg); /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 40px;
  border: 1px solid var(--border-color); /* Border color */
}

.page-privacy-policy__section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gold); /* Gold color */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid var(--divider); /* Divider */
  padding-bottom: 15px;
}

.page-privacy-policy__sub-section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text-main); /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: left;
}

.page-privacy-policy__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--text-secondary); /* Text Secondary */
  line-height: 1.7;
  text-align: justify;
}

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

.page-privacy-policy__list-item {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--text-secondary); /* Text Secondary */
  line-height: 1.6;
  padding-left: 30px;
  position: relative;
}

.page-privacy-policy__list-item::before {
  content: '•';
  color: var(--gold); /* Gold bullet point */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  left: 0;
  top: 0;
}

.page-privacy-policy__inline-link {
  color: var(--glow); /* Glow color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* FAQ Section */
.page-privacy-policy__faq-section {
  padding: 60px 20px;
  background-color: var(--deep-navy);
  color: var(--text-main);
  text-align: center;
}

.page-privacy-policy__faq-list {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color); /* Border color */
  overflow: hidden;
  background: var(--card-bg); /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main); /* Text Main */
  font-size: 18px;
  font-weight: 600;
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question::-webkit-details-marker {
  display: none;
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.1); /* Lighter hover */
}

.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--glow); /* Glow color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg);
}

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
  padding: 0 25px 20px;
  background: rgba(var(--card-bg-rgb), 0.8); /* Slightly lighter for answer */
  border-radius: 0 0 10px 10px;
  color: var(--text-secondary); /* Text Secondary */
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.page-privacy-policy__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__container {
    padding: 30px;
  }
}

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

  .page-privacy-policy__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__hero-content {
    margin-top: -60px;
    padding: 15px;
    border-radius: 8px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }

  .page-privacy-policy__description {
    font-size: clamp(15px, 3vw, 18px);
    margin-bottom: 20px;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    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__content-section,
  .page-privacy-policy__faq-section {
    padding: 40px 15px;
  }

  .page-privacy-policy__container {
    padding: 25px;
    border-radius: 8px;
  }

  .page-privacy-policy__section-title {
    font-size: clamp(20px, 5vw, 30px);
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .page-privacy-policy__sub-section-title {
    font-size: clamp(18px, 4vw, 24px);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__text-block,
  .page-privacy-policy__list-item,
  .page-privacy-policy__faq-answer p {
    font-size: 16px;
    line-height: 1.6;
  }

  details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    padding: 15px 20px;
  }

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

  .page-privacy-policy__faq-toggle {
    font-size: 20px;
    width: 24px;
  }

  details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 20px 15px;
  }

  /* Image responsive optimization */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-privacy-policy__content-section,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}