/* Estils generals*/
section#avis_legal {
  max-width: 100%;
  margin: 2rem auto;
  background: whitesmoke;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Capçaleres */
section#avis_legal h1 {
  font-size: 1.8rem;
  color: var(--color-verde-oscuro);
  text-align: center;
  margin-bottom: 1rem;
}

section#avis_legal h2 {
  font-size: 1.4rem;
  color: var(--color-verde-oscuro);
  border-bottom: 2px solid var(--color-verde-claro);
  padding-bottom: 0.5rem;
  margin-top: 1.5rem;
}

/* Text principal */
section#avis_legal p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Llistes */
section#avis_legal ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

section#avis_legal ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

/* Enllaços */
section#avis_legal a {
  color: var(--color-rojo-claro);
  text-decoration: none;
  font-weight: bold;
}

section#avis_legal a:hover {
  text-decoration: underline;
}

/* Icons */
section#avis_legal i {
  margin-right: 5px;
}

/************************/
/*******VERSIÓ PC********/
@media (width >= 992px) {
  section#avis_legal {
    max-width: 90%;
    padding: 2.5rem;
    margin: 3rem auto;
  }

  section#avis_legal h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  section#avis_legal h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  section#avis_legal p,
  section#avis_legal ul li {
    font-size: 1.1rem;
  }
}
