/*====================================================
=                  FAQ SECTION                      =
====================================================*/

/* Container for all FAQ items */
.faq {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Individual FAQ item container */
.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* FAQ question button styling */
.faq-button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  color: black;
  font-size: 2rem;
  font-weight: 500;
  background: transparent;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-button:hover,
.faq-button:focus {
  color: var(--brand-orange);
  text-decoration: none;
  outline: none;
}

/* Chevron icon in FAQ buttons */
.faq-button .bi {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

/* Rotate chevron when expanded */
.faq-button[aria-expanded="true"] .bi {
  transform: rotate(180deg);
}

/* FAQ answer content */
.faq-content {
  padding: 0 0 15px 30px;
}

.faq-content p {
  margin-bottom: 0;
}

/* Highlight links within FAQ answers */
.faq-content a {
  color: var(--brand-orange);
  font-weight: 500;
}

.faq-content a:hover {
  text-decoration: underline;
}