 /* --- YOUR ORIGINAL CSS STYLES --- */
        :root {
            --primary-color: #0066cc;
            --secondary-color: #3b82f6;
            --accent-color: #dbeafe;
            --toolbox-color: #10b981;
            --elearning-color: #8b5cf6;
        }
        
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 40px 0;
        }
        
        .navbar {
            background: linear-gradient(90deg, #0066cc 0%, #004999 100%) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            margin-bottom: 30px;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.4rem;
            color: white !important;
        }
        
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            transition: all 0.3s;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .header-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            text-align: center;
            position: relative;
        }

        .btn-reset {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 0.85rem;
        }
        
        .main-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .subtitle {
            color: #6b7280;
            font-size: 1.1rem;
        }
        
        .search-container {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .search-box {
            position: relative;
            margin-bottom: 20px;
        }
        
        .search-box input {
            padding: 15px 50px 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
        }
        
        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
            font-size: 1.3rem;
        }
        
        .filter-section {
            margin-bottom: 20px;
        }
        
        .filter-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .category-badge {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid #e0e0e0;
            background: white;
            color: #666;
            font-size: 0.9rem;
        }
        
        .category-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .category-badge.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .results-count {
            color: #666;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .training-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary-color);
        }
        
        .training-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .training-card.toolbox-talk {
            border-left-color: var(--toolbox-color);
        }
        
        .training-card.e-learning {
            border-left-color: var(--elearning-color);
        }
        
        .training-icon {
            font-size: 2.5rem;
            margin-right: 20px;
        }
        
        .training-icon.toolbox-talk {
            color: var(--toolbox-color);
        }
        
        .training-icon.e-learning {
            color: var(--elearning-color);
        }
        
        .training-title {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 8px;
        }
        
        .training-type-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .training-type-badge.toolbox-talk {
            background: #d1fae5;
            color: var(--toolbox-color);
        }
        
        .training-type-badge.e-learning {
            background: #ede9fe;
            color: var(--elearning-color);
        }
        
        .training-subject {
            display: inline-block;
            padding: 4px 12px;
            background: #f3f4f6;
            color: #6b7280;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 10px;
            margin-bottom: 10px;
        }
        
        .training-duration {
            display: inline-block;
            padding: 4px 12px;
            background: #fef3c7;
            color: #92400e;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 10px;
            margin-bottom: 10px;
        }
        
        .training-description {
            color: #555;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .topic-tags {
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .topic-tag {
            display: inline-block;
            padding: 5px 12px;
            background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
            color: #0369a1;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid #bae6fd;
        }
        
        .btn-access {
            background: linear-gradient(135deg, var(--primary-color), #004999);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-access:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
            color: white;
        }
        
        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        
        .no-results i {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        
        .info-box {
            background: #dbeafe;
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        
        .info-box i {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        .stats-section {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            padding: 10px 20px;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .stat-label {
            color: #6b7280;
            font-size: 0.9rem;
        }
    </style>