/* FAQ Section */
.faq {
  padding: 56px 0;
  background: #ffffff;
}

.faq-content {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.faq-header {
  flex: 1;
  max-width: 531px;
}

.faq-header h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.63;
  color: #010205;
  margin-bottom: 48px;
}

.faq-header p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #6c7277;
}

.faq-items {
  flex: 1;
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #141f1f;
  padding: 24px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  cursor: pointer;
}

.faq-question h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;
  color: #141f1f;
  max-width: 448px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #141f1f;
}

.faq-answer {
  margin-top: 32px;
  padding-top: 24px;
}

.faq-answer p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #4e5556;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item:not(.active) .faq-answer {
  display: none;
}
