.hero-wrap.hero-wrap-2 {
    background-position: center top !important;
}

/* FEATURES SERVICES */
/* Contenitore con margine superiore per fare spazio al cerchio sporgente */
.feat_services .services-card-wrap {
  position: relative;
  margin-top: 45px;
  display: flex;
  flex-direction: column;
}

/* Cerchio colorato centrato e traslato verso l'alto del 50% della sua altezza */
.feat_services .services-card-wrap .icon-floating {
  width: 80px;
  height: 80px;
  background-color: #1196c4;
  color: #fff;
  border-radius: 50%;
  font-size: 39px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Rettangolo con sfondo bianco/grigio chiaro, padding superiore extra */
.feat_services .services-card-wrap .card-body-custom {
  background: #f0efef;
  padding: 55px 25px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
  border: 1px solid #cfcfcf;
}

.feat_services .services-card-wrap .card-body-custom h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feat_services .services-card-wrap .card-body-custom p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Effetto hover coordinato card + icona */
.feat_services .services-card-wrap:hover .icon-floating {
  transform: translate(-50%, -60%);
}

.feat_services .services-card-wrap:hover .card-body-custom {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* PAGINA FAQ's */
.description-about.privacy-detail {
  width: 100%;
}

.faq-chat-container {
  margin: 0 auto;
  padding: 10px 0;
}

/* Singola sessione Domanda + Risposta */
.faq-session {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
  position: relative;
}

/* Stile base per i fumetti */
.bubble {
  position: relative;
  max-width: 82%;
  border-radius: 18px;
  font-size: 21px;
  line-height: 1.6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.bubble p {
  margin-bottom: 0;
}

/* Bolla DOMANDA (a SINISTRA con icona ? Font Awesome 6) */
.bubble-question {
  align-self: flex-start;
  background: #1196c4 ;
  color: #ffffff;
  margin-bottom: 15px;
  padding: 18px 24px 18px 65px; /* Spazio a sinistra per l'icona */
}

.bubble-question::before {
  content: "\f128"; /* fa-question */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: rgb(17 150 196);
  background: rgba(255, 255, 255, 1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-question h3 {
  margin: 0;
  padding: 0;
}

.bubble-question h3 p {
  font-size: 21px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}

/* Bolla RISPOSTA (a DESTRA con icona ! Font Awesome 6) */
.bubble-answer {
  align-self: flex-end;
  background: #ffffff;
  color: #495057;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 65px 18px 24px; /* Spazio a destra per l'icona */
}

.bubble-answer::before {
  content: "\f12a"; /* fa-exclamation */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #ffffff;
  background: #1196c4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-answer p {
  color: #444444;
}

/* Adattamento Mobile */
@media (max-width: 768px) {
  .bubble {
    max-width: 95%;
  }
  
  .bubble-question {
    padding: 14px 18px 14px 52px;
  }
  
  .bubble-question::before {
    left: 12px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  .bubble-answer {
    padding: 14px 52px 14px 18px;
  }
  
  .bubble-answer::before {
    right: 12px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  .bubble-question h3 p {
    font-size: 16px;
  }
  
  .bubble-answer {
    font-size: 15px;
  }
}



