.custom-faq {
  max-width: 100%;
  
}

.faq-item {
  border-bottom: 1px dashed #949494;
  padding: 20px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: var(--f-20-18);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: color 0.3s;
  font-weight:600;color: var(--grey-bg);
}

.arrow-icon {
  width: 30px;
    height: auto;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  font-size: 16px;
  color: #444;
}

.faq-item.active .faq-answer {
  padding-top: 10px;
  max-height: 500px; /* adjust as needed */
}
