body {
    font-family: 'Georgia', serif; /* Stile classico ed elegante */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f9fc;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

header {
    background-color: #0d546e; /* #75c8e6; Celeste preso dal logo */
    color: white;
    text-align: center;
    padding: 40px 0 20px 0;
    border-bottom: 5px solid #5aaecb;
}

.logo {
    width: 120px;
    border-radius: 50%;
    border: 3px solid white;
    background-color: white;
}

nav {
    background: #333;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
}

nav a:hover, nav a.active {
    background-color: #5a7293; /*#75c8e6;*/
}

h1, h2 {
    text-transform: uppercase;
}

.normativa-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 30px;
    text-align: center;
}

.btn-download {
    display: inline-block;
    background: #333;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn-download:hover {
    background: #555;
}

/* Tabella */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-top: 20px;
}

.tdCustom {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #75c8e6;
    color: white;
    cursor: pointer;
}

tr:hover {
    background-color: #e1f2f9;
}

.link-file {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #777;
}