/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
}

/* Sfondo uniforme */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #002652; /* Colore solido */
    color: white;
    text-align: center;
}

/* Contenitore principale */
.container {
    max-width: 600px;
    padding: 20px;
}

/* Logo */
.logo {
    width: 450px;
    margin-bottom: 20px;
}

/* Titolo principale */
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Sottotitolo */
.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 40px;
}

/* Indirizzo */
.address {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
}

/* Responsive per mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo {
        width: 300px;
    }
}
