  .category-card {
            transition: all 0.3s ease;
        }
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .subcategory-item {
            transition: all 0.2s ease;
        }
        .subcategory-item:hover {
            background-color: #f0f7ff;
        }
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .modal {
            transition: all 0.3s ease;
        }
        /* Mobile menu styles */
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .mobile-menu.open {
            max-height: 500px; /* Adjust based on your content */
        }
		
		
        .progress-container {
            width: 100%;
            height: 8px;
            background-color: #e5e7eb;
            border-radius: 4px;
            margin: 1rem 0;
        }
        
        .progress-bar {
            height: 100%;
            border-radius: 4px;
            background-color: green;
            transition: width 0.4s ease;
        }
        
        .question-card {
            transition: all 0.3s ease;
        }
        
        .question-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .option-item {
            transition: all 0.2s ease;
        }
        
        .option-item:hover {
            background-color: #f3f4f6;
        }
        
        .option-item.selected {
            background-color: #ACE1AF;
            color: white;
        }
        
        .health-meter {
            height: 20px;
            border-radius: 10px;
            background: linear-gradient(to right, #10b981, #f59e0b, #ef4444);
            position: relative;
            overflow: hidden;
        }
        
        .health-meter-fill {
            height: 100%;
            border-radius: 10px;
            background-color: #e5e7eb;
            position: absolute;
            right: 0;
            transition: width 1s ease;
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .severity-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 6px;
        }
        
        .severity-0 { background-color: #10b981; }
        .severity-1 { background-color: #a3e635; }
        .severity-2 { background-color: #facc15; }
        .severity-3 { background-color: #f97316; }
        .severity-4 { background-color: #ef4444; }
        
        .score-display {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0.5rem 0;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            display: inline-block;
        }
        
        .score-0 { color: #10b981; background-color: #ecfdf5; }
        .score-1 { color: #a3e635; background-color: #f7fee7; }
        .score-2 { color: #facc15; background-color: #fefce8; }
        .score-3 { color: #f97316; background-color: #fff7ed; }
        .score-4 { color: #ef4444; background-color: #fef2f2; }