/* Setup Generale */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f0f8f 0%, #2929cc 100%);
    color: white;
    display: flex;
    flex-direction: column;
}

/* Contenitore Principale */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

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

/* Correzione H1: usa il PUNTO, non la virgola */
h1 {
    font-size: 1.6rem; 
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Nota di sviluppo più discreta */
.dev-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Contenitore Azioni (Pulsante + Social) */
.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Pulsante Contact Us */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid white;
    border-radius: 30px;
    padding: 15px 40px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    width: 250px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ... Keep existing body, container, logo, h1, p, btn-primary styles exactly as they are ... */


/* GRUPPO SOCIAL */
.social-group {
    display: flex;
    flex-direction: row;
    gap: 25px !important;    /* Spazio richiesto 25px */
    margin-top: 40px;        /* Spazio dal pulsante sopra */
    justify-content: center;
    align-items: center;
}

/* Dimensioni Icone WebP */
.social-icon {
    height: 30px !important; /* Altezza richiesta 40px */
    width: auto !important;  /* Mantiene le proporzioni */
    display: block;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* ... Keep curved-footer and other styles exactly as they are ... */

/* Footer Curvato */
.curved-footer {
    background-color: white;
    color: #2929cc;
    text-align: center;
    padding: 30px 10px;
    border-top-left-radius: 50% 30px;
    border-top-right-radius: 50% 30px;
}

.curved-footer h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 900;
}