.decision-container {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
}

.quiz-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.question-item {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-item {
    position: relative;
}

.option-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-label {
    display: block;
    padding: 18px 25px;
    background: #f9f9f9;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.option-item input:checked + .option-label {
    background: rgba(45, 76, 63, 0.05);
    border-color: var(--primary);
    font-weight: 600;
    color: var(--primary);
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    width: 10%;
    transition: width 0.3s ease;
}

/* Navigation Buttons */
.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.btn-nav {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 1rem;
    border: none;
}

.btn-prev {
    background: #eee;
    color: var(--text-light);
}

.btn-prev:hover {
    background: #e0e0e0;
}

.btn-next, .btn-submit {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 51, 42, 0.2);
}

.btn-next:hover, .btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-submit-quiz {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--primary) 0%, #3e5a49 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(192, 57, 43, 0.2);
    border: none;
    cursor: pointer;
}

.btn-submit-quiz:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(30, 51, 42, 0.3);
    background: linear-gradient(135deg, #3e5a49 0%, var(--primary) 100%);
}

/* Result Styles */
.result-container {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: none;
}

.result-avatar {
    width: 120px;
    height: 120px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.result-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.score-breakdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.score-badge {
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Animations removed */

@media screen and (max-width: 768px) {
    .promo-text-right {
        display: none !important;
    }
    .decision-header,
    .decision-header h1,
    .decision-header p {
        color: white !important;
    }
    .decision-container {
        padding: 0 !important;
    }
    .quiz-card {
        padding: 20px 15px !important;
    }
    
    /* Mobile styles for result modal */
    #result-modal {
        justify-content: flex-start !important;
        overflow-y: auto !important;
        padding: 30px 0 !important;
    }
    .modal-card {
        padding: 25px 20px !important;
        border-radius: 20px !important;
    }
    #result-modal #result-img {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        display: inline-block !important;
        margin: 0 auto 15px !important;
    }
    #result-modal #result-name {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
    #result-modal #result-desc {
        font-size: 0.88rem !important;
        margin-bottom: 20px !important;
        line-height: 1.5 !important;
    }
}
