.faq-main {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 90px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-hero {
  text-align: center;
  background: var(--bg-color);
  padding: 48px 32px;
  border-radius: 32px;
  box-shadow: var(--small-box-shadow);
}

.faq-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--small-font-size);
  color: var(--orange-color);
  margin-bottom: 12px;
}

.faq-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 12px;
}

.faq-hero__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 22px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 45px rgba(10, 10, 10, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--orange-color);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-color);
  line-height: 1.6;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .faq-main {
    width: min(95%, 600px);
    padding: 60px 0 90px;
  }

  .faq-item {
    padding: 18px 22px;
  }
}
