body{
    background:#f0ebf8;
    font-family: Arial, sans-serif;
    margin:0;
    padding:30px;
}

.container{
    max-width:900px;
    margin:auto;
}

.card{
    background:white;
    border-radius:12px;
    padding:30px;
    margin-bottom:20px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.header{
    border-top:10px solid #673ab7;
}

h1{
    color:#202124;
}

.question{
    margin-bottom:30px;
}

.question-title{
    font-size:16px;
    margin-bottom:15px;
    font-weight:bold;
}

.option-group{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.option-group label{
    display:flex;
    align-items:center;
    gap:5px;
}

.section-title{
    background:#673ab7;
    color:white;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
}

button{
    background:#673ab7;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:5px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#5a2ea6;
}
tr:hover{
    background:#f9f5ff;
    transition:0.3s;
}

table td{
    vertical-align:middle;
}