:root {
  --tab-label-bg: #000000;
  --tab-label-color: #ffffff; /* رنگ متن تیتر */
  --tab-label-hover-bg: #333333;
  --tab-content-bg: #ffffff;
  --tab-content-text-color: #000000; /* پاسخ‌ها مشکی */
  --font-family-icons: "Font Awesome 6 Free";
  --font-family-text: "peyda", sans-serif;
  --tab-border-radius: 10px;
  --transition-duration: 0.3s;
}

#custom-faq .tab {
  width: 100%;
  overflow: visible;
  margin-bottom: 10px;
  border-radius: var(--tab-border-radius);
}

#custom-faq .tab-label {
  display: flex;
  justify-content: flex-start;
  padding: 1em;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--tab-border-radius);
  color: var(--tab-label-color);
  font-family: var(--font-family-text);
  background: var(--tab-label-bg);
  transition: background var(--transition-duration) linear, transform var(--transition-duration) linear;
}

#custom-faq .tab-label h4 {
  font-size: 20px !important;
  color: #ffffff !important;
  margin: 0;
}

#custom-faq .tab-label:hover {
  background: var(--tab-label-hover-bg);
}

#custom-faq .tab-label::before {
  content: "\\f067";
  width: 1em;
  font-family: var(--font-family-icons);
  margin-left: 12px;
  color: var(--tab-label-color);
  font-weight: bold;
  transition: transform 0.3s, color var(--transition-duration);
  margin-top: 0.3em;
}

#custom-faq .tab.active .tab-label::before {
  content: "\\f068";
}

#custom-faq .tab-content {
  display: none;
  padding: 1em;
  background: var(--tab-content-bg);
  color: var(--tab-content-text-color);
  font-family: var(--font-family-text);
  border-radius: 0 0 var(--tab-border-radius) var(--tab-border-radius);
}
