:root {
  --primary-color: #0A0A0A; /* Deep Black */
  --secondary-color: #FFD700; /* Gold */
  --accent-color: #DC143C; /* Deep Red for CTA */
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --background-light: #F8F8F8;
  --background-dark: #1A1A1A;
  --border-color: #E0E0E0;
}

/* General page styles */
.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

.page-faq .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* Hero section */
.page-faq .hero-faq-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
  padding: 60px 20px;
  background-color: var(--primary-color);
}

.page-faq .hero-faq-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.page-faq .hero-faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(255, 215, 0, 0.3));
  z-index: 1;
}

.page-faq .hero-faq-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-faq .hero-faq-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq .hero-faq-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-faq .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq .cta-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-faq .faq-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-faq .section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-faq .section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-faq .faq-list {
  margin-top: 30px;
}

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

.page-faq .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;
}

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

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

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

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

.page-faq .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);
}

.page-faq .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 25px 20px;
  border-top: 1px solid var(--border-color);
}

.page-faq .faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

.page-faq .faq-answer .page-faq.text-link {
  color: var(--accent-color);
  text-decoration: underline;
}

.page-faq .faq-answer .page-faq.text-link:hover {
  color: var(--secondary-color);
}

/* Call to Action Section */
.page-faq .cta-section {
  background-color: var(--primary-color);
  padding: 80px 20px;
  text-align: center;
  color: var(--text-light);
}

.page-faq .cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-faq .cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-light);
}

.page-faq .cta-button.main-cta {
  background: var(--secondary-color);
  color: var(--primary-color);
  margin-right: 20px;
}

.page-faq .cta-button.main-cta:hover {
  background: var(--accent-color);
  color: var(--text-light);
}

.page-faq .cta-button.secondary-cta {
  background: none;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 13px 38px;
}

.page-faq .cta-button.secondary-cta:hover {
  background: var(--text-light);
  color: var(--primary-color);
  border-color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq .hero-faq-title {
    font-size: 3em;
  }
  .page-faq .section-title {
    font-size: 2.2em;
  }
  .page-faq .cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-faq .hero-faq-section {
    min-height: 350px;
    padding: 40px 15px;
  }
  .page-faq .hero-faq-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  .page-faq .hero-faq-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-faq .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-faq .section-title {
    font-size: 2em;
    margin-bottom: 10px;
  }
  .page-faq .section-subtitle {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-faq .faq-question {
    padding: 15px 20px;
  }
  .page-faq .faq-question h3 {
    font-size: 1em;
  }
  .page-faq .faq-toggle {
    font-size: 1.5em;
  }
  .page-faq .faq-answer {
    padding: 0 20px;
  }
  .page-faq .faq-item.active .faq-answer {
    padding: 12px 20px 15px;
  }
  .page-faq .cta-section {
    padding: 60px 15px;
  }
  .page-faq .cta-title {
    font-size: 2em;
  }
  .page-faq .cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-faq .cta-button.main-cta,
  .page-faq .cta-button.secondary-cta {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    display: block;
  }
}

@media (max-width: 480px) {
  .page-faq .hero-faq-title {
    font-size: 2em;
  }
  .page-faq .section-title {
    font-size: 1.8em;
  }
  .page-faq .cta-title {
    font-size: 1.8em;
  }
}