:root {
  --primary-color: #003366; /* Royal Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #002244;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-privacy-policy h1, .page-privacy-policy h2, .page-privacy-policy h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy h1 {
  font-size: 3em;
  text-align: center;
  color: var(--text-light);
}

.page-privacy-policy h2 {
  font-size: 2.2em;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  margin-top: 40px;
}

.page-privacy-policy h3 {
  font-size: 1.6em;
  color: #004080;
  margin-top: 30px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-privacy-policy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-privacy-policy ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-privacy-policy strong {
  color: var(--primary-color);
}

.page-privacy-policy__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--secondary-color);
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  z-index: 2;
  margin-bottom: 40px;
}

.page-privacy-policy__hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-content p {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
  color: var(--text-light);
}

.page-privacy-policy__hero-image {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--secondary-color);
}

.page-privacy-policy__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy__section--alt {
  background-color: #fcfcfc;
}

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

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

/* FAQ Section Specific Styles */
.page-privacy-policy__faq-section {
  background-color: var(--background-light);
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f0f3f6;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

.faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-content h1 {
    font-size: 3em;
  }
  .page-privacy-policy__hero-content p {
    font-size: 1.2em;
  }
  .page-privacy-policy h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero {
    padding: 60px 15px;
  }
  .page-privacy-policy__hero-content h1 {
    font-size: 2.5em;
  }
  .page-privacy-policy__hero-content p {
    font-size: 1.1em;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-privacy-policy__section {
    padding: 40px 15px;
  }
  .page-privacy-policy h2 {
    font-size: 1.8em;
  }
  .page-privacy-policy h3 {
    font-size: 1.4em;
  }
  .page-privacy-policy p, .page-privacy-policy ul li {
    font-size: 1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-content h1 {
    font-size: 2em;
  }
  .page-privacy-policy__hero-content p {
    font-size: 1em;
  }
  .page-privacy-policy__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-privacy-policy h2 {
    font-size: 1.6em;
  }
  .page-privacy-policy h3 {
    font-size: 1.2em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.3em;
  }
}