/* CONTRATTI.CSS - STILE LEGALE PULITO */

/* Sfondo "ufficio legale" PayPal */
.service-detail{
  padding-top: 120px;
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 25% 15%, rgba(0,156,222,0.14), transparent 55%),
    radial-gradient(circle at 75% 35%, rgba(0,48,135,0.18), transparent 60%),
    linear-gradient(180deg, rgba(1,33,105,0.12), rgba(0,0,0,0));
}

.service-detail .container{
  max-width: 960px;
}

/* Tutto bianco */
.service-detail,
.service-detail *{
  color: #ffffff;
}

/* Titolo legale */
.service-detail h2{
  text-align: center;
  margin-bottom: 1.2rem;
  text-shadow: 0 12px 45px rgba(0,0,0,0.55);
}

/* Paragrafo */
.service-detail p{
  opacity: 0.94;
  font-size: 1.03rem;
  line-height: 1.9;
  max-width: 880px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

/* Lista "clausole" */
.service-detail ul{
  max-width: 900px;
  margin: 2rem auto;
  padding: 0;
}

.service-detail li{
  list-style: none;
  position: relative;

  background: rgba(255,255,255,0.05);
  border-left: 4px solid #009CDE; /* PayPal Cerulean linea sinistra */
  border-radius: 12px;

  padding: 1rem 1.1rem 1rem 2.2rem;
  margin-bottom: 0.9rem;

  box-shadow: 0 14px 35px rgba(0,0,0,0.40);
}

/* Icona legale */
.service-detail li::before{
  content: "📋";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #009CDE;
  font-size: 1.1rem;
}

/* CTA professionale */
.service-detail .cta-btn{
  display: inline-block;
  padding: 1.1rem 2.6rem;
  border-radius: 12px;
  background: linear-gradient(45deg, #003087, #009CDE);
  color: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-detail .cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.55), 0 0 55px rgba(0,156,222,0.4);
}

/* Footer override per coerenza */
footer {
  color: #ffffff;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  padding: 2rem 0;
  margin-top: 4rem;
}

footer p {
  margin: 0;
  opacity: 0.9;
  text-align: center;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .service-detail {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  
  .service-detail h2 {
    font-size: 1.8rem;
  }
  
  .service-detail p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .service-detail li {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .service-detail .cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
