
.faq-section {
     max-width: 900px;
     margin: auto
}
.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}
.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: var(--bs-blue-four);
    bottom: -25px;
    margin-left: -30px;
}
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  border: 1px dashed var(--purple-border);
  border-radius: 10px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed var(--purple-border) !important;
}
.faq .card:first-child, .faq .card:first-child .card-header:hover, .faq .card:first-child .faq-title[aria-expanded="true"]{
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}
.faq .card:last-child, .faq .card:last-child .card-header:hover{
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.faq .card:last-child .faq-title[aria-expanded="true"]{
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}


.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  border-radius: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    background: var(--purple-two);
    padding-left: 10px;
}
 
.faq .card .card-header:hover .faq-title {
    color: var(--purple-one); 
}
.faq .card .card-header:hover .faq-title .badge {
    background-color: var(--purple-one); 
    color: var(--purple-two); 
}
.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px; 
  font-size: 16px;
  letter-spacing: 1px; 
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 22px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: var(--purple-two);
  color: var(--purple-one);
  font-size: 14px;
  margin-right: 20px;
}

.faq-title[aria-expanded="true"]{
  color: var(--purple-one); 
  background: var(--purple-two);
}

.faq .card .card-header .faq-title[aria-expanded="true"] span.badge{
  color: var(--purple-two); 
  background: var(--purple-one);
}
 


.faq .card .card-body *{color: var(--purple-five) !important}
 
.faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.8;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px dashed var(--purple-border) !important;
}

.faq-section .card:last-child{
    border-bottom: 0 !important;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}