/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from shared.css, explicitly set for consistency */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  text-align: center;
  background: linear-gradient(135deg, #8B0000, #FFD700);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  box-sizing: border-box;
}

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-privacy-policy__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1a1a1a; /* Dark text for contrast on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-privacy-policy__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-privacy-policy__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__light-bg {
  background-color: #2a2a2a; /* Slightly lighter dark for contrast */
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #FFD700; /* Gold for titles */
  font-weight: bold;
  text-align: center;
}

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

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

.page-privacy-policy__list-item {
  background-color: rgba(255, 255, 255, 0.05); /* Very subtle background for list items */
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 15px;
  border-left: 5px solid #8B0000; /* Dark red accent */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-privacy-policy__list-description {
  font-size: 1em;
  line-height: 1.5;
  color: #f0f0f0;
}

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

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-privacy-policy__contact-link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-privacy-policy__cta-group--contact {
  margin-top: 40px;
}

.page-privacy-policy__faq-section {
  padding-bottom: 80px;
}

.page-privacy-policy__faq-list {
  margin-top: 40px;
}

.page-privacy-policy__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #8B0000; /* Dark red for question header */
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: #a00000;
}

.page-privacy-policy__faq-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-privacy-policy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-privacy-policy__answer-text {
  padding-top: 10px;
  color: #f0f0f0;
  font-size: 1em;
  line-height: 1.5;
}

/* Responsive styles */
@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: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    min-height: 300px;
  }

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

  .page-privacy-policy__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-privacy-policy__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }

  .page-privacy-policy__dark-bg,
  .page-privacy-policy__light-bg {
    padding: 20px;
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__paragraph {
    font-size: 0.95em;
  }

  .page-privacy-policy__list-item {
    padding: 15px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__list-title {
    font-size: 1.1em;
  }

  .page-privacy-policy__list-description {
    font-size: 0.9em;
  }

  .page-privacy-policy__image {
    margin: 20px auto;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__faq-question {
    padding: 15px;
    font-size: 1.1em;
  }

  .page-privacy-policy__faq-title {
    font-size: 1.1em;
  }

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

  .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    padding: 15px;
  }

  /* Ensure all containers containing images, videos, or buttons are responsive */
  .page-privacy-policy__container,
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__faq-item {
    padding-left: 0;
    padding-right: 0;
  }
}