/* style/privacy-policy.css */

/* Variables */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-dark: #000000;
  --background-medium-dark: #1a1a1a;
  --background-light-dark: #2a2a2a;
  --border-color: #e0e0e0;
}

/* Base styles for the privacy policy page */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-light); /* Default text color for dark body background */
  background-color: var(--background-dark);
}

/* Shared container for content sections */
.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-privacy-policy__section-padding {
  padding: 60px 0;
}

/* Hero Banner Section */
.page-privacy-policy__hero-banner {
  position: relative;
  background: var(--primary-color);
  color: var(--text-color-light);
  padding: 120px 0 60px 0; /* padding-top for fixed header */
  text-align: center;
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
}

.page-privacy-policy__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-privacy-policy__hero-description a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__hero-description a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.page-privacy-policy__hero-image {
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.page-privacy-policy__content-section {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-privacy-policy__intro-paragraph {
  font-size: 18px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
}

.page-privacy-policy__intro-paragraph a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__intro-paragraph a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.page-privacy-policy__heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 40px;
  color: var(--text-color-light);
  text-align: left;
}

.page-privacy-policy__heading--center {
  text-align: center;
}

.page-privacy-policy__sub-heading {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-privacy-policy__paragraph {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-privacy-policy__paragraph a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__paragraph a:hover {
  color: #ffd700;
  text-decoration: underline;
}

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

.page-privacy-policy__list-item {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-color-light);
}

.page-privacy-policy__list-item strong {
  color: var(--secondary-color);
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--background-medium-dark);
  color: var(--text-color-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background: #2b2b2b;
  border-color: rgba(255, 255, 255, 0.2);
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-color-light);
  pointer-events: none;
}

.page-privacy-policy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.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;
  background: var(--background-light-dark);
  color: #f0f0f0;
  border-radius: 0 0 8px 8px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  color: var(--text-color-light);
  transform: rotate(45deg); /* Change + to X or rotate to - */
}

.page-privacy-policy__faq-answer p {
  margin: 0;
  font-size: 16px;
  color: #f0f0f0;
}

.page-privacy-policy__faq-answer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 36px;
  }
  .page-privacy-policy__heading {
    font-size: 28px;
  }
}