* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: url('assets/landing-desktop.jpg') center center/cover no-repeat fixed;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

/* Rimuove eventuali pattern di sfondo */
body::before {
    display: none;
}

/* Responsive per l'immagine di sfondo */
@media (max-width: 768px) {
    body {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 480px) {
    body {
        background-size: cover;
        background-position: center;
    }
}