.faq-content {
  width: 100%;
  max-width: 1000px;

  display: flex;
  flex-direction: column;
  gap: 2rem;

  padding: 8rem 1rem 0 1rem;
}

.faq-content h2 {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 2.5rem;
  text-align: center;
}
.faq-content h2 strong {
  font-size: 2.3rem;
  font-weight: 600;

  color: var(--blue8);
}

.faq-sub-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.questions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem;

  background: var(--blue5);
}
.questions-header span {
  font-size: 1.0625rem;
  font-weight: 600;
}
.questions-header span:nth-child(2) {
  font-size: 1.5rem;
}

.questions-grid {
  overflow: hidden;
  transition: .3s;

  cursor: pointer;

  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.icon.rotate {
  transform: rotate(45deg);
}

.answer-container {
  display: grid;
  grid-template-rows: 0fr;

  overflow: hidden;
  opacity: 0;
  transition: .3s ease;
}
.answer-container p {
  overflow: hidden;
  line-height: 1.3;
  font-weight: 500;
  color: var(--black6);
}

.answer-container.open {
  grid-template-rows: 1fr;
  opacity: 1;

  padding: 1rem;
}
