/* ============================
   SEZIONE PRIVACY
================================*/
.privacy-section {
  background: var(--color-background);
  padding: 60px 20px;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-background-light);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
  padding: 40px 45px;
}

/* ============================
   TITOLI PRINCIPALI
================================*/
.privacy-title {
  font-size: 30px;
  color: var(--text-heading);
  text-align: center;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.3px;
}

.privacy-underline {
  display: block;
  width: 35%;
  height: 3px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-small);
  margin: 8px auto 25px auto;
}

/* ============================
   DATA AGGIORNAMENTO
================================*/
.privacy-update {
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
  opacity: 0.9;
}

/* ============================
   CONTENUTO GENERALE
================================*/
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-main);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 600;
}

/* ============================
   SOTTOSEZIONI (TITOLI)
================================*/
.privacy-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-heading);

  /* PERFETTO: testo → nuovo titolo = più spazio */
  margin-top: 24px;

  /* titolo → testo = spazio minimo */
  margin-bottom: 4px;

  letter-spacing: 0.2px;
}

.privacy-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);

  /* testo → sottotitolo */
  margin-top: 18px;

  /* sottotitolo → testo */
  margin-bottom: 3px;
}

/* ============================
   PARAGRAFI
================================*/
.privacy-content p {
  margin: 0 0 10px 0; /* spazio dopo il testo */
  line-height: 1.75;
}

/* ============================
   LISTE
================================*/
.privacy-content ul {
  margin: 0 0 12px 24px; /* vicina al titolo ma con spazio finale */
  padding: 0;
}

.privacy-content li {
  margin-bottom: 4px;
  line-height: 1.7;
}
