@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

/* Font e colori coerenti con l'app */
body {
  font-family: "Inter", Arial, sans-serif;
  background: #f9f9f9;
  color: #1e293b;
  margin: 0;
  padding: 0;
}

.termini-condizioni {
  max-width: 900px;
  margin: 40px auto 30px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(255, 87, 87, 0.08),
    0 1.5px 4px rgba(255, 87, 87, 0.1);
  padding: 36px 28px 28px 28px;
}

.termini-condizioni h1 {
  color: #ff5757;
  font-size: 2em;
  margin-bottom: 24px;
  font-weight: bold;
  text-align: center;
}

.termini-condizioni h2 {
  color: #fb1e1e;
  font-size: 1.15em;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}

.termini-condizioni p,
.termini-condizioni ul {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 12px;
}

.termini-condizioni ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.termini-condizioni li {
  margin-bottom: 8px;
}

.termini-condizioni a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.2s;
}
.termini-condizioni a:hover {
  color: #ff5757;
}

@media (max-width: 680px) {
  .termini-condizioni {
    max-width: 98vw;
    padding: 18px 8px 18px 8px;
    border-radius: 10px;
    margin: 18px auto;
  }
  .termini-condizioni h1 {
    font-size: 1.2em;
    margin-bottom: 16px;
  }
  .termini-condizioni h2 {
    font-size: 1em;
    margin-top: 18px;
  }
  .termini-condizioni p,
  .termini-condizioni ul {
    font-size: 0.95em;
  }
}
