.faq-section {
  font-family: 'Courier Prime', monospace;
}

.faq-main-title {
  font-size: 3rem;
  letter-spacing: 10px;
}

/* Accordion Container */
.accordion-item {
  background-color: #1a1a1a !important; /* Dark grey from screenshot */
  border: none !important;
  border-radius: 0 !important;
}

/* Header Button */
.accordion-button {
  background-color: #1a1a1a !important;
  color: #fff !important;
  font-size: 1.25rem;
  padding: 25px;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hide default Bootstrap arrow */
.accordion-button::after {
  display: none;
}

/* Custom Red Icon (+ / x) */
.icon-toggle {
  position: relative;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.icon-toggle::before, .icon-toggle::after {
  content: '';
  position: absolute;
  background-color: #EE2E3C; /* Signature Red */
  transition: transform 0.3s ease;
}

/* Vertical line */
.icon-toggle::before {
  top: 0; left: 11px;
  width: 3px; height: 100%;
}

/* Horizontal line */
.icon-toggle::after {
  top: 11px; left: 0;
  width: 100%; height: 3px;
}

/* Animation to "X" when open */
.accordion-button:not(.collapsed) .icon-toggle::before {
  transform: rotate(90deg);
}
.accordion-button:not(.collapsed) .icon-toggle {
  transform: rotate(45deg);
}

/* Body Content */
.accordion-body {
  color: #bbb;
  padding: 0 25px 25px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .accordion-button { font-size: 1rem; }
  .faq-main-title { 
    font-size: 30px; 
    line-height: 1.2;
    letter-spacing: 0 !important;
  }
}