.quest-container {
    font-family: inherit;
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 9999px;
    margin-bottom: 24px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    transition: width 0.3s ease-in-out;
}

.quest-step {
    animation: fadeIn 0.3s ease-in-out;
}

.quest-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.quest-answers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.answer-option {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.answer-option:hover {
    border-color: #9ca3af;
}

.answer-option.selected {
    font-weight: 600;
}

.quest-navigation {
    display: flex;
    justify-content: space-between;
}

.quest-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.quest-btn.prev-step-btn, .quest-btn.prev-to-cta-btn {
    background-color: #6b7280;
}

.quest-btn.prev-step-btn:hover, .quest-btn.prev-to-cta-btn:hover {
    background-color: #4b5563;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
