.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  line-height: 1.7;
  background-color: #1A1A1A; /* Very dark grey background */
}

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

/* Hero Section */
.page-privacy-policy .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C2C2C, #000000); /* Dark gradient background */
  color: #FFFFFF;
  overflow: hidden;
}

.page-privacy-policy .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-privacy-policy .hero-image {
  width: 100%;
  max-width: 800px; /* Adjust max-width for hero image */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-privacy-policy .hero-content h1 {
  font-size: 3.2em;
  color: #FFD700; /* Primary color for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy .hero-content p {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy .cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: #B22222; /* Secondary color for CTA */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700; /* Gold border */
}

.page-privacy-policy .cta-button:hover {
  background: #FFD700; /* Primary color on hover */
  color: #1A1A1A; /* Dark text on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: #B22222;
}

/* Content Section */
.page-privacy-policy .content-section {
  padding: 60px 0;
}

.page-privacy-policy article {
  background-color: #2A2A2A; /* Slightly lighter dark background for content */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy h2 {
  font-size: 2.2em;
  color: #FFD700; /* Primary color for main headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #B22222; /* Secondary color underline */
  padding-bottom: 10px;
}

.page-privacy-policy h3 {
  font-size: 1.6em;
  color: #FFD700; /* Primary color for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-privacy-policy ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-privacy-policy a {
  color: #FFD700; /* Primary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #B22222; /* Secondary color on link hover */
  text-decoration: underline;
}

.page-privacy-policy .content-image {
  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.3);
}

/* FAQ Section */
.page-privacy-policy .faq-section {
  margin-top: 60px;
  background-color: #1A1A1A; /* Dark background for FAQ */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy .faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700;
  border-bottom: 3px solid #B22222;
  display: inline-block;
  padding-bottom: 10px;
}

.page-privacy-policy .faq-item {
  margin-bottom: 20px;
}

.page-privacy-policy .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #333333; /* Darker grey for question background */
  border: 1px solid #444444;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-privacy-policy .faq-question:hover {
  background: #444444;
  border-color: #FFD700;
}

.page-privacy-policy .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-privacy-policy .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #B22222; /* Secondary color for toggle icon */
  transition: transform 0.3s ease;
}

.page-privacy-policy .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-privacy-policy .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #2A2A2A;
  border-radius: 0 0 8px 8px;
  color: #E0E0E0;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.page-privacy-policy .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy .hero-content h1 {
    font-size: 2.8em;
  }
  .page-privacy-policy h2 {
    font-size: 2em;
  }
  .page-privacy-policy h3 {
    font-size: 1.4em;
  }
  .page-privacy-policy article {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy .hero-section {
    padding: 60px 15px;
  }
  .page-privacy-policy .hero-content h1 {
    font-size: 2.2em;
  }
  .page-privacy-policy .hero-content p {
    font-size: 1em;
  }
  .page-privacy-policy .cta-button {
    padding: 14px 35px;
    font-size: 1em;
  }
  .page-privacy-policy .content-section {
    padding: 40px 0;
  }
  .page-privacy-policy article {
    padding: 20px;
    margin: 0 15px;
  }
  .page-privacy-policy h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-privacy-policy h3 {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 12px;
  }
  .page-privacy-policy ul {
    margin-left: 20px;
  }
  .page-privacy-policy .faq-section {
    padding: 30px;
    margin: 40px 15px;
  }
  .page-privacy-policy .faq-question {
    padding: 15px 20px;
  }
  .page-privacy-policy .faq-question h3 {
    font-size: 1.1em;
  }
  .page-privacy-policy .faq-toggle {
    font-size: 1.5em;
  }
  .page-privacy-policy .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy .hero-content h1 {
    font-size: 1.8em;
  }
  .page-privacy-policy .hero-content p {
    font-size: 0.9em;
  }
  .page-privacy-policy .cta-button {
    padding: 12px 30px;
    font-size: 0.9em;
  }
  .page-privacy-policy h2 {
    font-size: 1.5em;
  }
  .page-privacy-policy h3 {
    font-size: 1.2em;
  }
  .page-privacy-policy .faq-question h3 {
    font-size: 1em;
  }
  .page-privacy-policy .faq-toggle {
    font-size: 1.3em;
  }
}