/* FAQ Section Styles */
.faq-section {
  background-color: #ffffff;
  padding: 5rem 0;
}

.faq-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 3rem;
  font-family: "Assistant ExtraBold", sans-serif;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.faq-highlight {
  color: #4263eb;
}

.faq-description {
  font-size: 1.25rem;
  font-family: "Assistant Regular", sans-serif;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.faq-contact-link {
  color: #4263eb;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-contact-link:hover {
  color: #3730a3;
  text-decoration: underline;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question-text {
  font-size: 1.125rem;
  font-family: "Assistant SemiBold", sans-serif;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  text-align: right;
  flex: 1;
  padding-left: 1rem;
}

.faq-chevron {
  color: #6b7280;
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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



.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  background-color: #f9fafb;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 1rem;
  font-family: "Assistant Regular", sans-serif;
  font-weight: 400;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
  text-align: right;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .faq-container {
    padding: 0 1.5rem;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  .faq-description {
    font-size: 1.125rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-container {
    padding: 0 1.5rem;
  }

  .faq-header {
    margin-bottom: 2rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-description {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question-text {
    font-size: 0.875rem;
    padding-left: 0.75rem;
  }

  .faq-chevron {
    font-size: 0.875rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem;
  }

  .faq-answer p {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.75rem;
  }

  .faq-description {
    font-size: 0.875rem;
  }

  .faq-question-text {
    font-size: 0.8125rem;
    padding-left: 0.5rem;
  }

  .faq-chevron {
    font-size: 0.75rem;
  }

  .faq-answer p {
    font-size: 0.75rem;
  }
}
