
.roofkit-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.roofkit-faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.roofkit-faq-question {
  margin: 0;
  font-size: var(--fs-base);
  font-family: var(--font-secondary);
  font-weight: var(--fw-medium);
  padding-right: 20px;
}
.roofkit-faq-icon {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.roofkit-faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: var(--font-secondary);
  line-height: 1.6;
}
.roofkit-faq-content-inner {
  padding: 0 24px 24px 24px;
}
.roofkit-faq-item.active {
  box-shadow: var(--shadow-sm, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  border-color: #d1d1ff !important;
}
.roofkit-faq-item.active .roofkit-faq-icon {
  transform: rotate(45deg);
}
.roofkit-faq-item.active .roofkit-faq-content {
  max-height: 2000px;
  opacity: 1;
}