        :root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --wellness-green: #28a745;
            --wellness-yellow: #ffc107;
            --wellness-orange: #fd7e14;
            --wellness-red: #dc3545;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
        }
        .chart-container{display:none}
        .page-header {
            background: linear-gradient(135deg, rgba(169, 214, 229, 0.4) 0%, rgba(44, 125, 160, 0.4) 100%);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(44, 125, 160, 0.2);
            position: relative;
            overflow: hidden;   color: var(--text-color);
        }
         
        .breadcrumb {
            background-color: transparent;
            padding: 0.5rem 0;
            margin-bottom: 0.5rem;
        }
        
        .breadcrumb-item a {
            color: var(--text-muted);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--text-color);
        }
         
        /* Wellness Category Cards */
        .wellness-category {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .wellness-category:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .category-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.25rem;
        }
        
        .category-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.25rem;
        }
        
        .category-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--text-color);
        }
        
        .category-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Question Styles */
        .question-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .question-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .question-text {
            font-weight: 500;
            margin-bottom: 1rem;
            color: var(--text-color);
        }
        
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0.75rem;
        }
        
        .option-btn {
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            background: white;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .option-btn:hover {
            background-color: var(--light-gray);
        }
        
        .option-btn.selected {
            background-color: rgba(44, 125, 160, 0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .option-label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        
        .option-points {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        
        /* Score Indicator */
        .score-indicator {
            width: 100%;
            height: 20px;
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            margin: 1rem 0;
            position: relative;
        }
        
        .score-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 0.5s ease-in-out;
        }
        
        .score-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        
        /* Result Styles */
        .result-container {
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .result-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        
        /* Overall Score Display */
        .overall-score-display {
            text-align: center;
            padding: 2rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            background: white;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .score-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .score-label {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .score-description {
            max-width: 600px;
            margin: 0 auto;
            color: var(--text-muted);
        }
        
        /* Category Score Cards */
        .category-score-card {
            background: white;
            border-radius: 8px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .category-score-info {
            flex: 1;
        }
        
        .category-score-name {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .category-score-bar {
            height: 8px;
            background-color: var(--light-gray);
            border-radius: 4px;
            overflow: hidden;
            margin: 0.5rem 0;
        }
        
        .category-score-fill {
            height: 100%;
            border-radius: 4px;
        }
        
        .category-score-value {
            font-weight: 700;
            font-size: 1.25rem;
            min-width: 60px;
            text-align: right;
        }
        
        /* Recommendations */
        .recommendation-card {
            background: white;
            border-radius: 8px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            border-left: 4px solid;
        }
        
        .recommendation-priority {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }
        
        .priority-high {
            background-color: rgba(220, 53, 69, 0.1);
            color: var(--wellness-red);
        }
        
        .priority-medium {
            background-color: rgba(255, 193, 7, 0.1);
            color: var(--wellness-orange);
        }
        
        .priority-low {
            background-color: rgba(40, 167, 69, 0.1);
            color: var(--wellness-green);
        }
        
        /* Chart Container */
        .chart-container {
            position: relative;
            height: 400px;
            width: 100%;
            margin: 2rem 0;
        }
        
        /* Content Sections */
        .section-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .info-box {
            background-color: rgba(44, 125, 160, 0.05);
            border-left: 3px solid var(--primary-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        
        /* Related Tools */
        .related-tools {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color); 
            margin-bottom: 1.5rem;
        }
        
        .related-title {
            font-weight: 600;
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem; 
            color: var(--primary-color);
        }
        
        .related-tool {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.3s;
        }
        
        .related-tool:hover {
            background-color: var(--light-gray);
        }
        
        .related-tool:last-child {
            border-bottom: none;
        }
        
        .related-icon {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background-color: rgba(44, 125, 160, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary-color);
        }
        
        /* Action buttons */
        .action-btn {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 0.5rem 1rem;
            margin-left: 0.5rem;
            transition: all 0.3s;
            color: var(--text-color);
        }
        
        .action-btn:hover {
            background-color: var(--light-gray);
            color: var(--primary-color);
        }
        
        /* Wellness-specific styles */
        .wellness-color-excellent { color: #28a745; }
        .wellness-color-good { color: #20c997; }
        .wellness-color-fair { color: #ffc107; }
        .wellness-color-poor { color: #fd7e14; }
        .wellness-color-critical { color: #dc3545; }
        
        .bg-wellness-excellent { background-color: #28a745; }
        .bg-wellness-good { background-color: #20c997; }
        .bg-wellness-fair { background-color: #ffc107; }
        .bg-wellness-poor { background-color: #fd7e14; }
        .bg-wellness-critical { background-color: #dc3545; }
        
        /* Progress tracker */
        .progress-tracker {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .progress-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--light-gray);
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            font-weight: 600;
            color: var(--text-muted);
        }
        
        .step-circle.active {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        
        .step-circle.completed {
            background-color: var(--wellness-green);
            border-color: var(--wellness-green);
            color: white;
        }
        
        .step-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        
        .progress-tracker::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 2px;
            background-color: var(--border-color);
            z-index: 1;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .tool-card {
                padding: 1.5rem;
            }
            
            .options-grid {
                grid-template-columns: 1fr;
            }
            
            .progress-tracker {
                flex-wrap: wrap;
            }
            
            .progress-tracker::before {
                display: none;
            }
        }
    