.faq-section {
    background: #fdfdfd;
    min-height: 100vh;
    padding: 10vh 0 0;
}

.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: #E91E63;
    bottom: -25px;
    margin-left: -30px;
}
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card-faq {
  border: none;
  background: none;
  border-bottom: 1px dashed #CEE1F8;
}

.faq .card-faq .card-faq-header {
  padding: 0px;
  border: none;
  background: none;
  transition: all 0.3s ease;
}

.faq .card-faq .card-faq-header:hover {
    background: rgba(233, 30, 99, 0.1);
    padding-left: 10px;
}

.faq .card-faq .card-faq-header .faq-title {
  width: 100%;
  text-align: left;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #3B566E;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

.faq .card-faq .card-faq-header .faq-title .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  border-radius: 100px;
  text-align: center;
  background: #3366ff;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}

.faq .card-faq .card-faq-body {
  padding: 30px 35px 16px 35px;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .card-faq .card-faq-body p {
  margin-bottom: 14px;
}

/* Collapse gestione */
.collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.collapse.show {
  max-height: 1000px; /* abbastanza alto da contenere il testo */
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card-faq .card-faq-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

