body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #0056b3;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.question-block {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.question-block p {
    font-style: italic;
    color: #555;
    margin-top: 5px;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

input[type="checkbox"] { /* Changed from radio to checkbox */
    margin-right: 10px;
}

button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}

#results {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

#results ol {
    list-style-type: decimal;
    padding-left: 20px;
}

#results li {
    background-color: #e9f7ff;
    border: 1px solid #cceeff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

#results li strong {
    color: #0056b3;
}
