
.custom-faq-container {
  width: 100%;
  margin: 0 auto;
}

.faq-box {
  border-bottom: 1px solid #ddd;
}

.faq-details {
  width: 100%;
}

.faq-details summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-weight: 600;
  font-size: 18px;
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-details[open] .faq-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 40px 20px 0;
  line-height: 1.7;
  font-size: 16px;
}
