@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f8fa;
    color: #333;
}

header {
    background-color: #003366;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 50px;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero {
    width: 100%;
    height: 200px;
    background: url("img/smartcard.jpg") center center / cover no-repeat;
    border-bottom: 4px solid #0074D9;
}

h1, h2 {
    color: #003366;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

ul li img.icon {
    width: 24px;
    margin-right: 10px;
}

a {
    color: #0074D9;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #777;
    background: #f1f1f1;
    margin-top: 2rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.titolo {
    color: #ffffff;
}

ul li::before {
    content: "•";
    color: #0074D9;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

section {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #0074D9;
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #005fa3;
}
