.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 10px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 38px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 12px #173c85a7;
  margin: 10%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-item {
  border-radius: 17px;
  background: rgba(171, 179, 202, 0.20);
  box-shadow: 0 4px 28px #0b163455;
  backdrop-filter: blur(6px);
  padding: 0;
  transition: background 0.3s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 34px 18px 32px;
  cursor: pointer;
  border-radius: 17px;
  transition: background 0.2s;
  letter-spacing: 0.01em;
  position: relative;
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 500;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.11);
  color: #e2e7f6;
  border-radius: 50%;
  box-shadow: 0 2px 10px #a1a4c122;
  margin-left: 14px;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.faq-item.active .faq-icon {
  color: #41eaff;
  background: rgba(50,235,255,0.12);
}

.faq-answer {
  padding: 0 38px 30px 38px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #eaf2ff;
  letter-spacing: 0.01em;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.33s cubic-bezier(.61,.01,.31,1), opacity 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  opacity: 1;
  padding-top: 4px;
}

.faq-question:focus-visible {
  outline: 2px solid #41eaff;
}
