:root {
  --text-color: #ffffff;
  --background-color: #001;
  --primary-color: #0059ff;
  --border-color: rgba(255, 255, 255, 0.15);
}

/* Reset base */
* {
  box-sizing: border-box;
}

/* Body */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

/* Contenitore principale */
.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Header */
.privacy-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Sottotitolo */
.subtitle {
  font-size: 1rem;
  color: #ccc;
}

/* Sezioni */
section {
  margin-bottom: 2.5rem;
}

/* Titoli sezioni */
h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

/* Paragrafi */
p {
  margin: 0.5rem 0;
  max-width: 75ch;
}

/* Liste */
ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

/* Testi descrittivi dentro liste (es. Google Fonts) */
ul p {
  margin: 0.5rem 0 0.8rem 0;
  font-size: 0.95rem;
  color: #ddd;
}

/* Link */
a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Separazione visiva tra sezioni */
section:not(:last-of-type) {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

/* Footer */
.privacy-footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .privacy-container {
    padding: 2rem 1rem;
  }
}