.page-faq {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #B22222; /* Deep Red */
  --dark-bg: #1a1a1a; /* Dark background for sections */
  --light-text: #ffffff;
  --dark-text: #333333;
  --grey-text: #cccccc;
  --border-color: #333333;
  --card-bg: #2a2a2a;
  --hover-gold: #e6c200;
  --hover-red: #991e1e;
}

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

/* Hero Section */
.page-faq .hero-faq-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #000000 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.page-faq .hero-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:hero:shbet80,faq_hero,abstract_pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-faq .hero-faq-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-faq .hero-faq-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-faq .hero-faq-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: var(--grey-text);
  margin-bottom: 40px;
}

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

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

.page-faq .cta-button:hover {
  background: var(--hover-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-faq .cta-button.secondary-button {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  margin-right: 15px;
}

.page-faq .cta-button.secondary-button:hover {
  background: var(--primary-color);
  color: var(--dark-text);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* FAQ Accordion Section */
.page-faq .faq-accordion-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
  color: var(--light-text);
}

.page-faq .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

.page-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-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: #1f1f1f; /* Darker background for answer */
  color: var(--grey-text);
}

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

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

.page-faq .faq-answer p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq .faq-answer p a:hover {
  color: var(--hover-gold);
  text-decoration: underline;
}

/* Call to Action Section */
.page-faq .cta-section {
  background: linear-gradient(90deg, #0a0a0a, #1a1a1a);
  padding: 60px 0;
  text-align: center;
  color: var(--light-text);
}

.page-faq .cta-section .section-title {
  color: var(--light-text);
  margin-bottom: 25px;
}

.page-faq .cta-section .description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--grey-text);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq .cta-section .cta-button {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq .hero-faq-title {
    font-size: 3em;
  }
  .page-faq .hero-faq-description {
    font-size: 1.1em;
  }
  .page-faq .section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-faq .hero-faq-title {
    font-size: 2.5em;
  }
  .page-faq .hero-faq-description {
    font-size: 1em;
  }
  .page-faq .hero-faq-section {
    padding: 60px 0;
  }
  .page-faq .faq-accordion-section {
    padding: 40px 0;
  }
  .page-faq .section-title {
    font-size: 1.8em;
    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: 15px 20px;
  }
  .page-faq .cta-button {
    padding: 12px 30px;
    font-size: 1em;
    margin-top: 15px;
  }
  .page-faq .cta-section .cta-button {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-faq .hero-faq-title {
    font-size: 2em;
  }
  .page-faq .hero-faq-description {
    font-size: 0.9em;
  }
  .page-faq .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-faq .faq-question h3 {
    font-size: 0.9em;
  }
  .page-faq .faq-answer p {
    font-size: 0.9em;
  }
}