.faqs .faq-answer a {
  font-family: "senticosansdt-webfont, sans-serif";
  font-size: 18px !important;
  color: white;
  font-weight: 100 !important;
  text-transform: none !important;
}

.faqs .faq-answer a:hover {
  color: black;
}

/* Accordion Container */
.accordion {
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Accordion Cards */
#faq-accordion .card {
  border-bottom: 1px solid #ddd;
}
#faq-accordion .card:last-child {
  border-bottom: none;
}

#faq-accordion h2 button {
  text-transform: uppercase !important;
}

/* Accordion Header */
.card-header {
  background-color: #f7f7f7;
  border-bottom: 1px solid #ddd;
  padding: 0.5em 1em;
  cursor: pointer;
}
.card-header h2 {
  margin: 0;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between; /* Align text and icon */
}
.card-header .btn-link {
  text-decoration: none;
  color: #333;
  width: calc(100%); /* Adjust width to allow icon to be on the right */
  text-align: left;
  padding: 0;
  font-size: 1.25rem;
  background-color: transparent;
  border: none;
  outline: none;
}

.toggle-icon,
.question-toggle {
  font-size: 1.25rem;
  cursor: pointer;
  float: right; /* Ensure icon is to the far right */
  line-height: 1.5; /* Align vertically with button text */
}

/* Accordion Content */
.card-body {
  padding: 1em;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 1.2em; /* Space between FAQ items */
  border-bottom: 1px solid gray;
}

/* FAQ Question Style */
.faq-question {
  font-weight: bold;
  margin-top: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between; /* Align text and icon */
  font-size: 1rem;
}

/* FAQ Answer Style */
.faq-answer {
  padding: 0.5em 1em;
  background-color: #f9f9f9;
  border-radius: 5px;
  display: none; /* Initially hide answer */
}

/* FAQ Answer expanded state */
.faq-answer.expanded {
  display: block; /* Show answer when expanded */
}

.faqs .card-header {
  background-image: linear-gradient(to right, #008299, #8ac165);
  color: white !important;
}

.faqs .card-header h2 button {
  color: white !important;
}

.faqs .faq-question {
  font-size: 20px !important;
  color: #333334 !important;
}

.faqs .faq-answer {
  font-size: 18px !important;
  background-color: #008299 !important;
  color: white;
}
.faqs .faq-answer a {
  font-size: 18px !important;
}
