.page-faq {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Text color for dark body background */
  background-color: #000000; /* Ensure body background is black */
  line-height: 1.6;
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Top padding to account for fixed header */
.page-faq__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color, #FFD700), var(--secondary-color, #8B0000));
  color: #ffffff;
}

.page-faq__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq__subtitle {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

.page-faq__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__cta-button--primary {
  background: var(--primary-color, #FFD700);
  color: #000000; /* Black text on gold button for contrast */
}

.page-faq__cta-button--primary:hover {
  background: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-button--secondary {
  background: var(--secondary-color, #8B0000);
  color: #ffffff;
}

.page-faq__cta-button--secondary:hover {
  background: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-faq__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color, #FFD700);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-faq__section-description {
  font-size: 17px;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px auto;
  color: #e0e0e0;
}

/* Intro Section */
.page-faq__intro-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

.page-faq__intro-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-faq__intro-text {
  text-align: justify;
  font-size: 17px;
  color: #f0f0f0;
  max-width: 800px;
}

.page-faq__intro-text p {
  margin-bottom: 20px;
}

.page-faq__intro-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

/* FAQ Section */
.page-faq__faq-section {
  padding: 80px 0;
  background-color: #000000; /* Darker background */
}

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

.page-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background-color: #1a1a1a; /* Dark background for FAQ items */
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #2a2a2a; /* Slightly lighter dark for question header */
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-faq__faq-question:hover {
  background: #3a3a3a;
  border-color: var(--primary-color, #FFD700);
}

.page-faq__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-faq__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color, #FFD700);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.1);
}

.page-faq__faq-item.active .page-faq__faq-toggle {
  transform: rotate(180deg);
  color: #ffffff;
  background-color: var(--secondary-color, #8B0000);
}

.page-faq__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;
  color: #e0e0e0;
  background-color: #1a1a1a;
}

.page-faq__faq-item.active .page-faq__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid #3a3a3a;
  border-radius: 0 0 8px 8px;
}

.page-faq__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Benefits Section */
.page-faq__benefits-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  text-align: center;
}

.page-faq__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-faq__benefit-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a3a3a;
}

.page-faq__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-faq__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__benefit-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color, #FFD700);
}

.page-faq__benefit-description {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.7;
}

.page-faq__cta-bottom {
  margin-top: 60px;
}

.page-faq__cta-bottom p {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 500;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq__main-title {
    font-size: 38px;
  }
  .page-faq__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-top: 100px; /* Mobile: Adjust based on actual header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-faq__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-faq__main-title {
    font-size: 30px;
  }
  .page-faq__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-faq__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-faq__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-faq__section-description {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-faq__intro-section, .page-faq__faq-section, .page-faq__benefits-section {
    padding: 60px 0;
  }
  .page-faq__intro-text {
    font-size: 15px;
  }
  .page-faq__faq-question {
    padding: 18px 20px;
  }
  .page-faq__faq-question h3 {
    font-size: 16px;
  }
  .page-faq__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-faq__faq-answer {
    padding: 0 20px;
  }
  .page-faq__faq-item.active .page-faq__faq-answer {
    padding: 15px 20px !important;
  }
  .page-faq__faq-answer p {
    font-size: 15px;
  }
  .page-faq__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-faq__benefit-card {
    padding: 25px;
  }
  .page-faq__benefit-title {
    font-size: 20px;
  }
  .page-faq__benefit-description {
    font-size: 15px;
  }
  .page-faq__cta-bottom p {
    font-size: 18px;
  }

  /* Image responsive */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-faq__intro-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-faq__benefit-icon {
    max-width: 100% !important;
    width: 100px !important;
    height: auto !important;
    display: block !important;
  }
  .page-faq__intro-section, .page-faq__faq-section, .page-faq__benefits-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-faq__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-faq__benefit-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}