  /* FAQ 스타일 */
.faq-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 80px;
}


.faq-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.faq-list {
  border-top: 2px solid #333;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  color: #222;
  flex: 1;
  padding-right: 20px;
}

.faq-question-text .q-mark {
  color: #4a90d9;
  font-weight: bold;
}

.btn-answer {
  padding: 8px 20px;
  border: 1px solid #4a90d9;
  background: #fff;
  color: #4a90d9;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-answer:hover,
.faq-item.active .btn-answer {
  background: #4a90d9;
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 30px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 17px;
  color: #222;
  line-height: 1;
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ol {
  padding-left: 40px;
}

.faq-answer ul {
  padding-left: 40px;
  /*margin: 10px 0;*/
}

.faq-answer ul li {
  list-style: disc;
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  margin-bottom: 5px;
}

/* 하단 배너 */
.contact-banner {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 30px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 3px solid #d8d8d8;
}

.banner-content h4 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}

.banner-content p {
  font-size: 15px;
  color: #222;
}

.banner-go-btns {
  display: flex;
  gap: 30px;
}

.banner-buttons {
  display: flex;
  gap: 15px;
}

.banner-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.banner-btn:hover {
  opacity: 0.9;
}

.banner-btn.purple {
  background: #6b5b95;
}

.banner-btn.pink {
  background: #b565a7;
}

.banner-btn .arrow {
  font-size: 20px;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .faq-question-text {
    padding-right: 0;
  }

  .faq-answer {
    padding-left: 15px;
  }

  .contact-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .banner-btn {
    width: 100%;
  }
}
