/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f9fa;
}

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

.page-privacy-policy-hero {
  background-color: var(--primary-color, #0A2463);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-privacy-policy-hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-privacy-policy-hero p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--auxiliary-color, #E3B505);
  color: var(--primary-color, #0A2463);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy-cta-button:hover {
  background-color: #d1a104; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy-section {
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-privacy-policy-section:last-of-type {
  border-bottom: none;
}

.page-privacy-policy-section h2 {
  font-size: 2em;
  color: var(--primary-color, #0A2463);
  margin-bottom: 25px;
  text-align: center;
}

.page-privacy-policy-section h3 {
  font-size: 1.5em;
  color: var(--primary-color, #0A2463);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy-section p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-privacy-policy-section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-privacy-policy-section ul li {
  margin-bottom: 10px;
}

.page-privacy-policy-image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-privacy-policy-content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section Specific Styles */
.page-privacy-policy-faq {
  background-color: #f1f3f5;
  padding: 60px 0;
}

.page-privacy-policy-faq h2 {
  margin-bottom: 40px;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #eee;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: var(--primary-color, #0A2463);
  flex-grow: 1;
}

.faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--auxiliary-color, #E3B505);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fcfcfc;
  color: #555555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin: 0;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy-hero h1 {
    font-size: 2em;
  }

  .page-privacy-policy-hero p {
    font-size: 1em;
  }

  .page-privacy-policy-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-privacy-policy-section h2 {
    font-size: 1.6em;
  }

  .page-privacy-policy-section h3 {
    font-size: 1.3em;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1em;
  }

  .faq-toggle {
    font-size: 1.2em;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy-hero h1 {
    font-size: 1.8em;
  }

  .page-privacy-policy-hero p {
    font-size: 0.9em;
  }

  .page-privacy-policy-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-privacy-policy-section h2 {
    font-size: 1.4em;
  }

  .page-privacy-policy-section h3 {
    font-size: 1.1em;
  }

  .page-privacy-policy-section ul {
    margin-left: 15px;
  }
}