/* Font e variabili */
@import url("https://fonts.googleapis.com/css2?family=Grandstander:wght@400;500;600;700;800;900&display=swap");

:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --text-main: #334155;
  --bg-light: #f8fafc;
}

body {
  font-family: "Grandstander", cursive;
  background-color: var(--bg-light);
  color: var(--text-main);
  margin: 0;
}

/* Header Comune */
.header-nav {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Carosello */
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-track img {
  min-width: 100%;
  height: auto;
}

/* Background Pattern Landing */
.bg-pattern {
  background-color: #f8fafc;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
}

/* --- STILI SPECIFICI PER PRIVACY.HTML --- */
.privacy-body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.privacy-section {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  margin: 40px auto;
  max-width: 800px;
  line-height: 1.6;
}

.privacy-section h1 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0;
}

.privacy-section h2 {
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
  margin-top: 40px;
  color: #1e293b;
  font-weight: 700;
}

.privacy-section ul {
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-section a {
  color: var(--primary);
  text-decoration: underline;
}
