/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Dark body background #000, so use light text */
  background-color: transparent; /* Main content background is transparent, letting body background (from shared.css) show */
}

.page-privacy-policy__intro-section {
  padding-top: 120px; /* Space for fixed header on desktop */
  padding-bottom: 40px;
  background: #1A1A1A; /* Auxiliary color for this section */
  color: #f0f0f0;
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
  font-weight: bold;
}

.page-privacy-policy__banner-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 20px auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-privacy-policy__intro-text {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
}

.page-privacy-policy__intro-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__intro-text a:hover {
  text-decoration: underline;
}

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

.page-privacy-policy__brand-name {
  font-weight: bold;
  color: #FFD700;
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-privacy-policy__info-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__card-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

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

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

.page-privacy-policy__list-item strong {
  color: #f0f0f0;
}

.page-privacy-policy__list-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__list-item a:hover {
  text-decoration: underline;
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 20px auto 30px auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.page-privacy-policy__contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

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

.page-privacy-policy__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
}

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

.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A1A1A;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-privacy-policy__faq-question:hover {
  background: #2a2a2a;
}

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

.page-privacy-policy__faq-toggle {
  font-size: 2em;
  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: 30px;
  height: 30px;
}

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

.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 25px;
  opacity: 0;
  color: #cccccc;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 0 0 8px 8px;
}

.page-privacy-policy__faq-answer p {
  margin: 0;
  font-size: 1em;
  text-align: justify;
}

.page-privacy-policy__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__faq-answer a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .page-privacy-policy__intro-section {
    padding-top: 100px !important; /* Space for fixed header on mobile */
    padding-bottom: 30px;
  }
  .page-privacy-policy__container {
    padding: 0 15px;
  }
  .page-privacy-policy__main-title {
    font-size: 2.2em;
    margin-bottom: 20px;
  }
  .page-privacy-policy__banner-image {
    margin-bottom: 30px;
  }
  .page-privacy-policy__intro-text,
  .page-privacy-policy__text-block,
  .page-privacy-policy__list-item,
  .page-privacy-policy__faq-answer p {
    font-size: 0.95em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__info-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
  }
  .page-privacy-policy__contact-item {
    font-size: 1em;
  }
  .page-privacy-policy__faq-question {
    padding: 15px 20px;
  }
  .page-privacy-policy__faq-question h3 {
    font-size: 1em;
  }
  .page-privacy-policy__faq-toggle {
    font-size: 1.8em;
    width: 25px;
    height: 25px;
  }
  .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    padding: 15px 20px !important;
  }
  /* Mobile image adaptation */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__intro-section,
  .page-privacy-policy__content-section,
  .page-privacy-policy__info-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}