﻿/* Foglio di stile per la pagina di aiuto */

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 20px;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 10px;
}

ul, ol {
  margin-left: 20px;
}

code {
  background-color: #f0f0f0;
  padding: 5px;
}

/* Stile per le sezioni FAQ */
.faq-section {
  margin-bottom: 30px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 5px;
}

.faq-answer {
  margin-bottom: 15px;
}

/* Stile per i link */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}