/* STILE GENERALE */
body {
    font-family: Arial, sans-serif;
}

/* HEADER */
.hero {
    background: linear-gradient(to right, #5f9cff, #7be4fefb);
    color: white;
    padding: 80px 20px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5em;
    font-weight: bold;
}

.download-buttons {
    margin-top: 20px;
}

.download-buttons a {
    margin: 5px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.download-buttons img {
    width: 25px;
}

/* SEZIONE CARATTERISTICHE */
.features {
    background: #f8f9fa;
}

.feature-icon {
    width: 128px;
    margin-bottom: 15px;
    height: 100px;
}

/* CTA (Scarica ora) */
.cta {
    background: #5f9cff;
    color: white;
    padding: 50px 20px;
}

/* FOOTER */
footer {
    background: #343a40;
    color: white;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* Migliora la leggibilità su schermi piccoli */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1em;
    }
    
    .download-buttons a {
        font-size: 0.9em;
        padding: 10px 15px;
    }

    .features h4 {
        font-size: 1.2em;
    }

    .cta h2 {
        font-size: 1.5em;
    }

    .feature-icon {
        width: 60px;
    }
}

/* Per schermi extra piccoli (es. iPhone SE, telefoni compatti) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }
    
    .download-buttons a {
        display: block;
        width: 100%;
        text-align: center;
    }
}
