.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-i {
  background: rgba(13, 31, 28, .5);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: #fafafa;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter Tight', sans-serif;
  transition: color .3s;
}

.faq-q:hover {
  color: #1D7C6E;
}

.faq-q i {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  transition: transform .4s;
}

.faq-i.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16, 1, .3, 1);
}

.faq-i.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 2rem 1.5rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  font-size: .9rem;
}
