.assessment-card {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .section-badge {
            background: #2c3e66;
            color: white;
            font-weight: 600;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
        }
        .question-item {
            background: #f9fafc;
            border-left: 4px solid #2c7da0;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 12px;
            transition: all 0.1s;
        }
        .question-text {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #1f3b4c;
        }
        .score-option {
            display: inline-flex;
            align-items: center;
            margin-right: 1.2rem;
            cursor: pointer;
        }
        .score-option input {
            margin-right: 0.4rem;
            transform: scale(1.05);
            accent-color: #2c7da0;
        }
        .score-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: #2d3e50;
        }
        .result-panel {
            background: linear-gradient(135deg, #eef5fa 0%, #ffffff 100%);
            border-radius: 24px;
            padding: 1.5rem;
            margin-top: 1rem;
            border: 1px solid #cfdfed;
        }
        .risk-indicator {
            width: 100%;
            height: 12px;
            background: #e9ecef;
            border-radius: 20px;
            margin: 1rem 0;
            overflow: hidden;
        }
        .risk-fill {
            height: 100%;
            width: 0%;
            background: #2a9d8f;
            border-radius: 20px;
            transition: width 0.3s ease;
        }
        .score-number {
            font-size: 3rem;
            font-weight: 800;
            color: #1f5e6e;
            line-height: 1;
        }
        .disclaimer-clinical {
            font-size: 0.8rem;
            background: #fef9e6;
            border-left: 4px solid #e9b35f;
            padding: 0.8rem 1rem;
            border-radius: 12px;
        }
        .example-preset {
            display: inline-block;
            background: #eef2f5;
            border: none;
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            transition: all 0.2s;
            cursor: pointer;
        }
        .example-preset:hover {
            background: #cbdde6;
            transform: translateY(-2px);
        }
        .footnote-clin {
            border-top: 1px solid #cbdde6;
            margin-top: 1.5rem;
            padding-top: 1rem;
            font-size: 0.85rem;
        } 
        @media (max-width: 768px) {
            .score-option {
                margin-right: 0.8rem;
            }
        }