.faq-section {
  width: min(850px, 100%);
  margin: 120px auto 0;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: var(--surface);
}

.faq-section__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: center;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  background: rgba(247, 247, 247, 0.05);
  overflow: hidden;
}

.faq-list__item {
  border-bottom: 1px solid rgba(247, 247, 247, 0.12);
}

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

.faq-list__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 28px 32px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  color: var(--surface);
}

.faq-list__trigger::-webkit-details-marker {
  display: none;
}

.faq-list__trigger::marker {
  display: none;
}

.faq-list__trigger:hover .faq-list__q {
  color: #fff;
}

.faq-list__q {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--surface);
  text-align: left;
  transition: color 0.15s ease;
}

.faq-list__chevron {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.15s ease;
}

.faq-list__item[open] .faq-list__chevron {
  transform: rotate(-135deg);
  opacity: 1;
}

.faq-list__panel {
  padding: 0 32px 28px;
}

.faq-list__a {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .faq-section {
    margin-top: 120px;
    padding-bottom: 56px;
    gap: 28px;
  }

  .faq-section__title {
    font-size: 32px;
  }

  .faq-list__trigger {
    padding: 24px 20px;
  }

  .faq-list__panel {
    padding: 0 20px 24px;
  }

  .faq-list__q {
    font-size: 16px;
  }

  .faq-list__a {
    font-size: 14px;
  }
}
