*{
    
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#222;
}

.content{

    max-width:800px;
    width:92%;
    margin: 0 auto;

}

h1{
    text-align:center;
    font-size:34px;
    margin-bottom:35px;
    font-weight:700;
}

.card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:22px;
    margin-bottom:20px;
}

.card h3{
    color:#777;
    font-size:15px;
    margin-bottom:12px;
}

.card p{
    font-size:18px;
    font-weight:600;
    line-height:1.4;
    margin-bottom:18px;
}

/* OPTIONS */

.option{
    display:flex;
    align-items:center;
    justify-content:space-between;

    width:100%;

    padding:14px 16px;
    margin-bottom:10px;

    border:1px solid #ddd;
    border-radius:8px;

    cursor:pointer;
    transition:.2s;
}

.option:hover{
    background:#fafafa;
    border-color:#bbb;
}

.option-text{
    flex:1;
    font-size:15px;
    line-height:1.4;
    white-space:normal;
    word-break:normal;
    overflow-wrap:anywhere;
    padding-right:20px;
}

.option input[type="radio"]{
    flex:0 0 auto;
    width:18px;
    height:18px;
    margin:0;
}

/* Highlight selected answer */

.option:has(input:checked){
    border-color:#000;
    background:#f3f3f3;
}

button{
    display:block;
    width:100%;
    min-height:48px;

    border-radius:10px;

    transition:.25s;
    margin:35px 0 50px;

    padding:14px;

    border:none;
    border-radius:8px;

    background:#111;
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
}

button:hover{
    background:#333;
}

@media (max-width:700px){

    .content{
        padding:0 15px;
    }

    h1{
        font-size:28px;
    }

    .card{
        padding:18px;
    }

    .card p{
        font-size:18px;
    }

    .option{
        padding:12px 14px;
    }

    .option-text{
        font-size:15px;
    }

}
.question-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;

    margin-bottom: 25px;
}

.question-text {
    flex: 1;
    margin: 0;
}

.question-image {
    flex-shrink: 0;

    width: 220px;
    max-height: 180px;

    object-fit: contain;

    border-radius: 8px;
}
@media (max-width: 600px) {

    .question-header {
        flex-direction: column;
    }

    .question-image {
        width: 100%;
        max-width: 220px;
        align-self: center;
    }

}