/* Stile di base */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 800px; /* Ottimo per tablet */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    box-sizing: border-box; /* Importante per il padding */
}

/* Gestione delle sezioni: solo una è visibile */
.sezione {
    display: none; /* Nasconde tutte le sezioni */
}
.sezione.attiva {
    display: block; /* Mostra solo quella attiva */
    animation: fadeIn 0.5s ease-in-out;
}

/* Animazione di entrata */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stili per Form e Input */
h1, h2 {
    color: #005a9c;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
p {
    font-size: 1.1em;
    line-height: 1.6;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Evita che l'input esca dal contenitore */
}

/* Pulsanti */
.btn {
    display: inline-block;
    background-color: #e0e0e0;
    color: #333;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #d1d1d1;
}
.btn-primary {
    background-color: #007bff;
    color: white;
}
.btn-primary:hover {
    background-color: #0056b3;
}

/* Scelta Video */
.scelte {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.scelte .btn {
    width: 100%;
    box-sizing: border-box;
}

/* Contenitore Video */
.video-container {
    width: 100%;
    background-color: #000;
    min-height: 400px; /* Altezza per il video */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.video-container video {
    width: 100%;
    max-height: 500px;
}

/* Stili Quiz */
.domanda-quiz {
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
}
.domanda-quiz p {
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 0;
}
.opzione-risposta {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.opzione-risposta input {
    margin-right: 10px;
}