/* Stile base del corpo */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Stile del contenitore principale */
header, section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Titolo principale */
header h1 {
    font-size: 2rem;
    color: #0056b3;
    text-align: center;
    margin-bottom: 10px;
}

/* Titoli delle sezioni */
h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #333;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
}

/* Sottotitoli */
h3 {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #0056b3;
}

/* Stile per paragrafi */
p {
    margin: 10px 0;
}

/* Liste puntate */
ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* Link */
a {
    color: #0056b3;
    text-decoration: none;
    border-bottom: 1px dotted #0056b3;
    transition: color 0.3s ease;
}

a:hover {
    color: #003d80;
    border-bottom: 1px solid #003d80;
}

/* Contenitore per la sezione contatti */
section p:last-child {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

/* Stile mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    header, section {
        margin: 10px;
        padding: 15px;
    }
    header h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1.1rem;
    }
}
