/* Reset e font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 1rem;
}
nav .logo {
    font-weight: bold;
    font-size: 1.3rem;
    color: #0078ff;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 1.5rem;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #0078ff;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #0078ff, #00c6ff);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.hero button {
    background: white;
    color: #0078ff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero button:hover {
    background: #f0f0f0;
}

/* Contenuto */
.content {
    max-width: 900px;
    margin: auto;
    padding: 4rem 2rem;
}
.content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0078ff;
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}