```css
.assessment-page{
    background:#F8F4EC;
    min-height:100vh;
    padding:60px 0;
}

.assessment-container{
    max-width:1100px;
    margin:0 auto;
}

.assessment-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
}

.progress-bar{
    height:10px;
    background:#E6E1D6;
    border-radius:100px;
    overflow:hidden;
    margin-bottom:40px;
}

.progress-fill{
    height:100%;
    background:#5F7A48;
}

.question-card{
    background:#fff;
    border-radius:18px;
    padding:50px;
}

.question-card h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:35px;
}

.answer-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.answer-option{
    border:1px solid #E5DED0;
    border-radius:14px;
    padding:20px;
    display:flex;
    gap:15px;
}
```
