
.question {
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 15px;
    margin: 10px auto;
    max-width: 1200px;
    width: 90%;
}

.options {
    margin-top: 10px;
}

.option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin: 5px 0;
    background-color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.option:hover {
    background-color: #e0e0e0;
}

.radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #5F5DA8;
    margin-right: 10px;
    position: relative;
    background-color: white;
    transition: background-color 0.3s;
}

.option.selected .radio {
    background-color: white;
}

.option.selected {
    background-color: #B6B3D9;
    color: white;
}


.consent {
    margin-top: 20px;
    text-align: center;
}

.consent input {
    margin-right: 10px;
}


.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #B6B3D9;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

.button:hover {
    background-color: #1b4d8e;
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}


@media (max-width: 600px) {
    .option {
        padding: 10px;
    }
}
