/* === FAQ Accordion Styling === */

/* Main card */
.card {
  border: 1px solid #e5e5e5;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Header */
.card-header {
  padding: 0;
  background: #2e2d2c; /* dark brand grey */
}

.card-header .btn {
  display: flex;
  justify-content: flex-start; /* align content left */
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border: none;
  position: relative; /* needed for ::after */
}

.card-header .btn:hover {
  background: #444;
  text-decoration: none;
}

/* Add Q: label styling */
.faq-q {
  color: #e53935; /* 🔴 red accent */
  margin-right: 8px;
  font-weight: bold;
}

/* Answer area */
.card-body {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  background: #fafafa;
  border-top: 1px solid #eee;
}

/* Child FAQs */
.faq-children .card {
  margin-top: 12px;
  border-left: 3px solid #e53935; /* red accent line */
  border-radius: 6px;
}

.faq-children .card-header {
  background: #f9f9f9;
}

.faq-children .btn {
  font-size: 16px;
  font-weight: 500;
  color: #2e2d2c;
  padding: 12px 15px;
}

.faq-children .btn:hover {
  background: #f0f0f0;
}

/* Animate collapse */
.collapse {
  transition: height 0.3s ease;
}

/* Add a + by default */
.card-header .btn::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #e53935; /* red accent */
  position: absolute;
  right: 20px;  /* keeps flush right */
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}

/* Change to minus when expanded */
.card-header .btn[aria-expanded="true"]::after {
  content: "−"; /* minus sign */
}


.faq-cta h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: #e53935; /* your brand red */
}

.faq-cta p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}



