/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-privacy-policy__hero-section {
  background-color: #0A2463; /* Main brand color for hero */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-privacy-policy__btn-primary:hover {
  background-color: #e6c200;
  color: #0A2463;
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for main section titles */
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 2px solid #0A2463;
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

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

.page-privacy-policy a {
  color: #FFD700;
  text-decoration: underline;
}

.page-privacy-policy a:hover {
  color: #e6c200;
  text-decoration: none;
}

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

.page-privacy-policy__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  width: 40%;
}

.page-privacy-policy__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  width: 40%;
}

.page-privacy-policy__content-section::after {
  content: '';
  display: table;
  clear: both;
}

.page-privacy-policy__faq-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-privacy-policy__faq-section .page-privacy-policy__section-title {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

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

.page-privacy-policy__faq-item {
  background-color: #1a3c7a; /* Darker blue for FAQ item background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-privacy-policy__faq-title {
  margin: 0;
  color: #FFD700; /* Gold for FAQ question title */
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.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;
  color: #f0f0f0;
  background-color: #1a3c7a;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1.1em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    text-align: center;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 1em;
  }
  .page-privacy-policy__image {
    float: none;
    margin: 20px auto;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right {
    margin-left: auto;
    margin-right: auto;
  }

  /* Ensure content containers are responsive */
  .page-privacy-policy__container,
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-section,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__faq-list,
  .page-privacy-policy__faq-item,
  .page-privacy-policy__faq-question,
  .page-privacy-policy__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .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-left: 15px;
    padding-right: 15px;
  }
}