.card-type-1 {
            background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
            color: white;
        }
        
        .card-type-1 .category-content {
            padding: 25px;
            position: relative;
            z-index: 1;
        }
        
        .card-type-1 .category-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
            opacity: 0.2;
            position: absolute;
            right: 20px;
            top: 20px;
            transition: var(--transition);
        }
        
        .card-type-1 .category-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
            position: relative;
            display: inline-block;
        }
        
        .card-type-1 .category-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-orange);
            border-radius: 3px;
        }
        
        .card-type-1 .category-description {
            margin-bottom: 25px;
            color: rgba(255,255,255,0.8);
        }
        
        .card-type-1 .category-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .card-type-1 .stat-item {
            text-align: center;
        }
        
        .card-type-1 .stat-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
        }
        
        .card-type-1 .stat-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
        }
        
        .card-type-1 .category-btn {
            background-color: white;
            color: var(--dark-green);
            width: 100%;
            padding: 10px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            transition: var(--transition);
            display: block;
        }
        
        .card-type-1 .category-btn:hover {
            background-color: rgba(255,255,255,0.9);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,255,255,0.3);
        }
        
        .card-type-1:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .card-type-1:hover .category-icon {
            transform: scale(1.2) rotate(15deg);
            opacity: 0.3;
        }