.faq .faq-item {
  cursor: pointer;
  box-shadow: 0 8px 16px 0 #0000001a;
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 0 0 32px 0;
}
.faq .faq-title {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: space-between;
}
.faq .faq-title.active {
  background: red;
}
.faq .faq-title h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin: 0;
  text-align: left;
}
.faq .arrow-icon {
  width: 1rem;
  height: 1rem;
  transition: all 0.35s;
  transform: rotate(0);
  margin-left: 0.5rem;
}
.faq .arrow-icon.rotate {
  transform: rotate(90deg);
}
.faq .faq-content {
  padding: 0.625rem 0 0 0;
  font-weight: 500;
  display: none;
  font-size: 1.125rem;
}

.faq-content a {
  color: var(--blue-05, #0860DB);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 1024px) {
  .faq .faq-title h2 {
    font-size: 16px;
    line-height: 19.5px;
  }
  .faq .faq-content {
    font-size: 14px !important;
    line-height: 17.07px;
    font-weight: 400;
  }
}
