section.faq-hero {
  min-height: 300px;
}

section.faq-hero .backgroundRectangle {
  height: 300px;
}

.faq-list {
  max-width: 800px;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--platinum);
  padding: 10px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 20px;
  color: var(--primary-600);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary h2 {
  font-size: 22px;
  line-height: 32px;
  margin: 0;
  letter-spacing: 0;
}

.faq-item p,
.faq-item div {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-600);
}

.faq-item div {
  flex-direction: column;
}

.faq-item div p {
  margin: 0 0 15px 0;
}

.faq-item ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 15px 0;
  display: block;
}

.faq-item ul li {
  margin: 6px 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-600);
}

.faq-item div h3 {
  font-size: 18px;
  line-height: 26px;
  margin: 10px 0 5px 0;
  color: var(--raisin-black);
}

@media (max-width: 1023px) {
  section.faq-hero {
    min-height: 200px;
  }

  section.faq-hero .backgroundRectangle {
    height: 200px;
  }

  .faq-item summary h2 {
    font-size: 18px;
    line-height: 26px;
  }
}
