.risk-score-display {
            padding: 1.5rem;
            background: linear-gradient(145deg, #f0f7ff, #ffffff);
            border-radius: 12px;
            border: 1px solid #dde7f0;
            text-align: center;
            margin: 1rem 0;
        }
        .risk-score-number {
            font-size: 4rem;
            font-weight: 700;
            font-family: 'Cambria Math', 'Latin Modern Math', serif;
            color: #1a3a5c;
            line-height: 1.2;
        }
        .risk-score-label {
            font-size: 1.1rem;
            color: #4a6a8a;
            font-weight: 500;
        }
        .risk-badge {
            display: inline-block;
            padding: 0.4rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
            margin: 0.5rem 0;
        }
        .risk-badge.low { background: #d4edda; color: #155724; }
        .risk-badge.moderate { background: #fff3cd; color: #856404; }
        .risk-badge.high { background: #f8d7da; color: #721c24; }
        .risk-badge.very-high { background: #dc3545; color: #fff; }
        .risk-meter {
            width: 100%;
            height: 12px;
            background: #e9ecef;
            border-radius: 10px;
            margin: 1rem 0;
            overflow: hidden;
        }
        .risk-meter-fill {
            height: 100%;
            border-radius: 10px;
            background: linear-gradient(90deg, #28a745, #ffc107, #dc3545);
            transition: width 0.8s ease;
        }
        .section-divider {
            border-top: 2px solid #e9ecef;
            margin: 2rem 0;
        }
        .health-tip {
            background: #f8f9fa;
            border-left: 5px solid #0d6efd;
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
        .health-tip.warning {
            border-left-color: #dc3545;
            background: #fdf0f0;
        }
        .health-tip.success {
            border-left-color: #28a745;
            background: #f0fdf0;
        }
        .health-tip.info {
            border-left-color: #17a2b8;
            background: #f0f9fc;
        }
        .disclaimer-box {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            color: #495057;
            margin: 1.5rem 0;
        }
        .disclaimer-box strong {
            color: #212529;
        }
        .question-group {
            background: #fafcff;
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1.2rem;
            border: 1px solid #e9edf4;
        }
        .question-group .question-group .help-text {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .result-section {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e9edf4;
            padding: 1.8rem;
            margin-top: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }
        .result-section .factor-contribution {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1rem 0;
        }
        .factor-tag {
            background: #e9ecef;
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #495057;
        }
        .factor-tag.high {
            background: #f8d7da;
            color: #721c24;
        }
        .factor-tag.moderate {
            background: #fff3cd;
            color: #856404;
        }
        .factor-tag.low {
            background: #d4edda;
            color: #155724;
        }
        .reference-citation {
            font-size: 0.85rem;
            color: #6c757d;
            border-top: 1px solid #dee2e6;
            padding-top: 1rem;
            margin-top: 1rem;
        }
        .action-plan {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .action-item {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #0d6efd;
        }
        .action-item .icon {
            font-size: 1.4rem;
            margin-right: 0.5rem;
        }
        .stat-badge {
            display: inline-block;
            background: #e7f0fa;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #1a3a5c;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .action-plan { grid-template-columns: 1fr; }
            .risk-score-number { font-size: 3rem; }
        }
        .example-preset {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0.8rem 0;
        }
        .preset-btn {
            background: rgba(13, 110, 253, 0.08);
            border: 1px solid rgba(13, 110, 253, 0.2);
            border-radius: 30px;
            padding: 0.3rem 1rem;
            font-size: 0.8rem;
            color: #0d6efd;
            cursor: pointer;
            transition: all 0.2s;
        }
        .preset-btn:hover {
            background: rgba(13, 110, 253, 0.18);
            transform: translateY(-1px);
        }
        .result-actions {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }