/* FAQ Section */
.faq {
  padding: 150px 0;
  background: #000;
  color: white;
}

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

.faq-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 32px;
  color: white;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-text {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: white;
  margin: 0;
  flex: 1;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: white;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: rgb(169, 169, 187);
  margin: 0;
  padding: 0 0 24px 0;
}

/* Active state */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 0 24px 0;
    font-size: 15px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 0 16px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 0 20px 0;
    font-size: 14px;
  }
}
