.faq-title-subtitle-container {
  background-color: black;
  padding: 20px 60px;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 1400px;
  margin: auto;
}

.faq-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 6px;
  font-family: "Archivo Black", sans-serif;
}

.faq-subtitle {
  color: white;
}

.faq-cards-container {
  max-width: 1350px;
  margin: 36px auto;
  padding: 0px 24px;
}

.faq-card {
  border: 1px solid white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px;
  font-size: 1.1rem;
  color: white;
  background: black;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Archivo Black", sans-serif;
}

.faq-answer.lemon-ginger {
  background: linear-gradient(to bottom, #ffffff 10%, #ece659 100%);
}
.faq-answer.orange-creamsicle {
  background: linear-gradient(to bottom, #ffffff 10%, #ffa34f 100%);
}
.faq-answer.cola {
  background: linear-gradient(to bottom, #ffffff 10%, #78A7FF 100%);
}
.faq-answer.strawberry-lemonade {
  background: linear-gradient(to bottom, #ffffff 10%, #FF7B9A 100%);
}

.faq-answer {
  display: none;
  background: #fff;
  padding: 36px 18px;
  font-size: 1.1rem;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.faq-card.open .faq-answer {
  display: block;
}

.icon {
  /* font-size: 1.2rem; */
  color: white;
  font-size: 24px;
}
