
.faq-section-main {
  width: 100%;
  max-width: 1800px;
  margin: 128px auto 0;
  padding: 0 20px;
  font-weight: 500;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-title {
  font-size: 80px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #000;
  margin-bottom: 16px;
}

.faq-title-highlight {
  color: #ff7415;
}

.faq-subtitle {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

.faq-container {
  margin-top: 40px;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-item-closed {
  background: #f8f9fa;
  border-left: 14px solid #e9ecef;
  box-shadow: 0px 2px 8px rgba(25, 33, 61, 0.06);
  padding: 12px 64px;
  min-height: 90px;
  display: flex;
  align-items: center;
}

.faq-item-open {
  background: #fff7f0;
  border-left: 12px solid #ff7415;
  box-shadow: 0 4px 20px rgba(255, 116, 21, 0.2);
  padding: 24px 64px;
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: all 0.3s ease;
}

.faq-question-btn:hover {
  transform: translateY(-1px);
}

.faq-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 50%;
  min-width: 40px;
  height: 40px;
}

.faq-toggle-icon {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
}

.faq-toggle-closed {
  color: #6c757d;
}

.faq-toggle-open {
  color: #ff7415;
}

.faq-question {
  flex: 1;
  font-size: 30px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.2;
  margin: 0;
  transition: all 0.3s ease;
}

.faq-question-inactive {
  color: #495057;
}

.faq-question-active {
  color: #ff7415;
}

.faq-answer-container {
  margin-top: 4px;
}

.faq-answer-text {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.75;
  color: #000;
  margin-left: 50px;
  /* margin: 0; */
}

.faq-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-container {
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1023px) {
  .faq-section-main {
    margin-top: 70px;
    padding: 0 30px;
  }

  .faq-header {
    margin-bottom: 30px;
  }

  .faq-title {
    font-size: 56px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 12px;
  }

  .faq-subtitle {
    font-size: 17px;
    text-align: center;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-question {
    font-size: 28px;
    line-height: 1.25;
  }

  .faq-answer-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .faq-item-closed {
    padding: 14px 32px;
    min-height: 85px;
  }

  .faq-item-open {
    padding: 18px 32px;
  }

  .faq-question-btn {
    gap: 14px;
  }

  .faq-icon-container {
    min-width: 35px;
    height: 35px;
    padding: 10px;
  }

  .faq-toggle-icon {
    font-size: 22px;
  }
}


@media (max-width: 835px) {
  .faq-section-main {
    margin-top: 50px;
    padding: 0 20px;
  }

  .faq-header {
    margin-bottom: 24px;
  }

  .faq-title {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .faq-subtitle {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-top: 5px;
  }

  .faq-container {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .faq-item-closed {
    padding: 12px 16px;
    min-height: 70px;
    border-left-width: 8px;
  }

  .faq-item-open {
    padding: 16px 16px;
    border-left-width: 8px;
  }

  .faq-question-btn {
    gap: 10px;
  }

  .faq-icon-container {
    min-width: 30px;
    height: 30px;
    padding: 7px;
  }

  .faq-toggle-icon {
    font-size: 18px;
  }

  .faq-question {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.025em;
  }

  .faq-answer-text {
    font-size: 13px;
    line-height: 1.6;
  }
}


@media (max-width: 576px) {
  .faq-section-main {
    margin-top: 40px;
    padding: 0 12px;
  }

  .faq-header {
    margin-bottom: 20px;
  }

  .faq-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .faq-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-container {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .faq-item-closed {
    padding: 10px 14px;
    min-height: 65px;
    border-left-width: 7px;
  }

  .faq-item-open {
    padding: 14px 14px;
    border-left-width: 7px;
  }

  .faq-question-btn {
    gap: 8px;
  }

  .faq-icon-container {
    min-width: 28px;
    height: 28px;
    padding: 6px;
  }

  .faq-toggle-icon {
    font-size: 16px;
  }

  .faq-question {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.025em;
  }

  .faq-answer-container {
    margin-top: 8px;
  }

  .faq-answer-text {
    font-size: 12px;
    line-height: 1.55;
  }
}
