.final-choice {
    margin-top: 3rem;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.choice-block {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.choice-block.negative {
    background: #fff5f5;
    border-left: 5px solid #e74c3c;
    color: #a94442;
}

.choice-block.positive {
    background: #f1fff4;
    border-left: 5px solid #2ecc71;
    color: #2e7d32;
}

.choice-block ul {
    padding-left: 1.2rem;
    margin-top: 0.8rem;
}

.choice-block li {
    margin-bottom: 0.6rem;
    font-weight: 500;
}