/* faq.css - Styles for FAQ section */

.faq-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #000000;
  padding: var(--space-6xl) 0;
  overflow: hidden;
  position: relative;
}

.faq-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-7xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6xl);
}

.faq-heading h2 {
  color: var(--text-dark-gray);
  font-size: var(--fs-5xl);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-align: center;
  margin: 0;
  padding: 0;
}

.faq-items {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: var(--space-lg) 0;
  transition: var(--transition-normal);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.question-text {
  color: var(--text-white);
  font-size: var(--fs-lg);
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  flex: 1;
  padding-right: var(--space-md);
}

.dropdown-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .dropdown-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  color: var(--text-light-gray);
  font-size: var(--fs-base);
  font-family: var(--font-primary);
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.faq-answer p {
  margin: 0;
}

/* Responsive adjustments for FAQ section */
@media (max-width: 1200px) {
  .faq-container {
    padding: 0 var(--space-6xl);
  }
}

@media (max-width: 992px) {
  .faq-container {
    padding: 0 var(--space-4xl);
  }
  
  .faq-heading h2 {
    font-size: var(--fs-3xl);
    line-height: 1;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: var(--space-3xl) 0;
  }
  
  .faq-container {
    padding: 0 var(--space-lg);
    gap: var(--space-3xl);
  }
  
  .faq-heading h2 {
    font-size: 25.6px;
    line-height: 1;
  }
  
  .faq-items {
    max-width: 100%;
  }
  
  .question-text {
    font-size: var(--fs-xs);
  }

  .faq-answer {
    font-size: var(--fs-xs);
  }
}
