.sukie-faq-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.sukie-faq-container {
  max-width: 900px;
  width: 100%;
}

.sukie-faq-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sukie-faq-title {
  font-size: 3rem;
  text-align: center;
  margin: 0;
  letter-spacing: 0.15em;
  font-family: "EditorsNoteRegular", sans-serif;
  font-weight: 400;
  color: #09233A;
}

.sukie-faq-header svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.sukie-faq-intro {
  text-align: center;
  color: #0A457B;
  margin-bottom: 5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-size: 1rem;
}

.sukie-faq-list {
  border-top: 1px solid #d8d0c4;
}

.sukie-faq-item {
  border-bottom: 1px solid #d8d0c4;
}

.sukie-faq-button {
  width: 100%;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #2c2c2c;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-family: inherit;
}

.sukie-faq-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #f5f0e8;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.sukie-faq-button:hover::before {
  width: 100%;
}

.sukie-faq-question-text {
  flex: 1;
  padding-right: 3rem;
  font-weight: 400;
}

.sukie-faq-chevron {
  width: 22px;
  height: 22px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  color: #666;
}

.sukie-faq-chevron--open {
  transform: rotate(180deg);
}

.sukie-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0 1rem;
}

.sukie-faq-answer--open {
  max-height: 600px;
  opacity: 1;
  padding: 0 1rem 2rem 1rem;
}

.sukie-faq-answer-text {
  color: #5a5a5a;
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .sukie-faq-title {
    font-size: 2rem;
  }

  .sukie-faq-header svg {
    width: 30px;
    height: 30px;
  }

  .sukie-faq-header {
    gap: 0.75rem;
  }

  .sukie-faq-button {
    padding: 1.5rem 0.75rem;
    font-size: 1rem;
  }

  .sukie-faq-question-text {
    padding-right: 1.5rem;
  }
}