/* CSS del quiz */
.quizWrap {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.quizQuestion {
    display: none;
}

.quizQuestion.active {
    display: block;
}

.quizQn {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #0056b3;
}

.quizAns {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="radio"],
input[type="text"],
input[type="email"],
input[type="tel"] {
    margin-right: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

button {
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #003d80;
}
