/* BOOKING.CSS - TESTI TUTTI BIANCHI */

body {
  color: #fff;
}

/* Tutto ciò che sta nella sezione del servizio diventa bianco */
.service-detail,
.service-detail * {
  color: inherit;
}

/* Sfondo più leggibile (PayPal dark) */
.service-detail {
  padding-top: 120px; /* spazio sotto navbar */
  padding-bottom: 70px;
  background: radial-gradient(circle at 50% 0%,
    rgba(0,156,222,0.14),
    rgba(1,33,105,0.38) 55%,
    rgba(0,0,0,0) 100%
  );
}

/* Link (se ne hai nel testo) */
.service-detail a {
  color: #fff;
  text-decoration-color: rgba(255,255,255,0.35);
}

.service-detail a:hover {
  text-decoration-color: rgba(255,255,255,0.8);
}

/* Lista: box più chiari per staccare dal background */
.service-detail li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,156,222,0.35);
  border-radius: 16px;
  padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

/* Icona bullet (resta PayPal blue) */
.service-detail li::before {
  color: #009CDE;
}

/* CTA resta blu PayPal ma testo bianco */
.service-detail .cta-btn {
  color: #fff;
}
