body {
    font-family: sans-serif;
    margin: 0 auto;
    max-width: 950px;
    background: linear-gradient(to bottom, #4a3b2b, #224f22);
    color: #f0f0f0;
    line-height: 1.6;
}

header {
    text-align: center;
    background-color: #4a3b2b;
    padding: 20px;
    position: relative;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-height: 150px;
    margin-right: 20px;
}

header h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.5em;
    margin: 0;
    color: #ffc857;
}

header p {
    margin: 5px 0;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    color: #333;
}

h2 {
    color: #4a3b2b;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #ff0000; /* Rosso */
    text-decoration: none;
    font-weight: bold; /* Grassetto */
}

a:visited {
    color: #ff0000; /* Rosso anche per i link visitati */
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin-top: 30px;
}

ul, ol {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}